Skip to content

Commit

Permalink
Merge pull request #59 from msabramo/eliminate_clean-launch_directory…
Browse files Browse the repository at this point in the history
…_not_empty_errors

Eliminate "Directory not empty" errors
  • Loading branch information
offbyone committed Mar 5, 2016
2 parents a9718b2 + d0e3961 commit 88b8d76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/clean-launch.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
find /src \( -name __pycache__ -o -name '*.pyc' \) -delete
find /src -depth \( -name __pycache__ -o -name '*.pyc' \) -print0 | xargs -0 rm -rf
exec "$@"

0 comments on commit 88b8d76

Please sign in to comment.