Skip to content

Commit f2a11b9

Browse files
committed
don't fail make clean if already clean
1 parent 359ebef commit f2a11b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/fixtures/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ build: $(shell ls *.ts | grep -v '\.d\.ts' | sed -e 's#\.ts$$#.js#')
66
tsc
77

88
clean:
9-
rm *.js *.map *.d.ts
9+
rm -f *.js *.map *.d.ts
1010

1111
.PHONY: all build

0 commit comments

Comments
 (0)