Skip to content

Commit a2fb728

Browse files
authored
Fix the Makefile 'distclean' target (#811)
Without `-f`, running `make distclean` results in an error. ``` find . -name "*.pyc" -exec rm -v {} + find . -name "*~" -exec rm -v {} + find . -type d -name "__pycache__" -exec rm -rv {} + rm -rvf build dist MANIFEST .coverage .cache .pytest_cache htmlcov coverage.xml rm -rvf tmp-test-dir-with-unique-name rm -rvf baseline rm -rvf result_images rm -r *.egg-info rm: *.egg-info: No such file or directory make: *** [distclean] Error 1 ```
1 parent 44a5051 commit a2fb728

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ clean:
6363
rm -rvf result_images
6464

6565
distclean: clean
66-
rm -r *.egg-info
66+
rm -rvf *.egg-info

0 commit comments

Comments
 (0)