Skip to content

Commit 7d5e025

Browse files
committed
Makefiles: rm -r -> rm -rf
1 parent 16f4285 commit 7d5e025

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

tests/analysis_tests/tests-generic-jsx-transform/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test: build
1010
./test.sh
1111

1212
clean:
13-
rm -r node_modules lib
13+
rm -rf node_modules lib
1414

1515
.DEFAULT_GOAL := test
1616

tests/analysis_tests/tests-incremental-typechecking/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test: build
1010
./test.sh
1111

1212
clean:
13-
rm -r node_modules lib
13+
rm -rf node_modules lib
1414

1515
.DEFAULT_GOAL := test
1616

tests/analysis_tests/tests-reanalyze/deadcode/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test: build node_modules/.bin/rescript
1010
./test.sh
1111

1212
clean:
13-
rm -r node_modules lib
13+
rm -rf node_modules lib
1414

1515
.DEFAULT_GOAL := build
1616

tests/analysis_tests/tests-reanalyze/termination/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test: build node_modules/.bin/rescript
1010
./test.sh
1111

1212
clean:
13-
rm -r node_modules lib
13+
rm -rf node_modules lib
1414

1515
.DEFAULT_GOAL := build
1616

tests/analysis_tests/tests/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test: build
1010
./test.sh
1111

1212
clean:
13-
rm -r node_modules lib
13+
rm -rf node_modules lib
1414

1515
.DEFAULT_GOAL := test
1616

tests/tools_tests/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test: build
1010
./test.sh
1111

1212
clean:
13-
rm -r node_modules lib
13+
rm -rf node_modules lib
1414

1515
.DEFAULT_GOAL := test
1616

0 commit comments

Comments
 (0)