Explorar el Código

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

Fix script/clean on systems where `find` requires a path argument
Daniel Nephin hace 10 años
padre
commit
f38c29f37b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      script/clean

+ 1 - 1
script/clean

@@ -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