From 65d1420a02a07b631c88445a62f1a61d0f4cb6b9 Mon Sep 17 00:00:00 2001 From: Chris Rose Date: Sat, 5 Mar 2016 15:49:10 -0800 Subject: [PATCH] Revert "Eliminate "Directory not empty" errors" --- docker/clean-launch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/clean-launch.sh b/docker/clean-launch.sh index a585d27f..63a5f472 100755 --- a/docker/clean-launch.sh +++ b/docker/clean-launch.sh @@ -1,3 +1,3 @@ #!/bin/bash -find /src -depth \( -name __pycache__ -o -name '*.pyc' \) -print0 | xargs -0 rm -rf +find /src \( -name __pycache__ -o -name '*.pyc' \) -delete exec "$@"