Merge pull request #2624 from aanand/fix-script-clean

Fix script/clean on systems where `find` requires a path argument
This commit is contained in:
Daniel Nephin 2016-01-08 10:17:01 -05:00
commit f38c29f37b
1 changed files with 1 additions and 1 deletions

View File

@ -3,5 +3,5 @@ set -e
find . -type f -name '*.pyc' -delete
find . -name .coverage.* -delete
find -name __pycache__ -delete
find . -name __pycache__ -delete
rm -rf docs/_site build dist docker-compose.egg-info