Skip to content

Commit c4f14da

Browse files
committed
fix: Prevent make clean fails
1 parent 80a61fa commit c4f14da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

{{cookiecutter.name}}/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ view:
2121

2222
.PHONY: clean
2323
clean:
24-
$(MAKE) -C docs/ clean
25-
$(RM) dist/
24+
$(MAKE) -C docs/ clean | true
25+
$(RM) dist/ | true
2626

2727
.PHONY: clean
2828
fmt:

0 commit comments

Comments
 (0)