Skip to content

Commit afe9293

Browse files
authored
Let 'make clean' delete .eggs and results (#981)
[skip ci]
1 parent b6050c9 commit afe9293

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,11 @@ clean:
5757
find . -name "*.pyc" -exec rm -v {} +
5858
find . -name "*~" -exec rm -v {} +
5959
find . -type d -name "__pycache__" -exec rm -rv {} +
60-
rm -rvf build dist MANIFEST .coverage .cache .pytest_cache htmlcov coverage.xml
60+
rm -rvf build dist .eggs MANIFEST .coverage .cache .pytest_cache htmlcov coverage.xml
6161
rm -rvf $(TESTDIR)
6262
rm -rvf baseline
6363
rm -rvf result_images
64+
rm -rvf results
6465

6566
distclean: clean
6667
rm -rvf *.egg-info

0 commit comments

Comments
 (0)