From 67063fc34fb80d05b5cdf881b53cba6b596dd38c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Tue, 13 Oct 2015 10:27:03 -0400 Subject: [PATCH] fix --- bin/compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compile b/bin/compile index ee704772..e5bb4a7b 100755 --- a/bin/compile +++ b/bin/compile @@ -228,7 +228,7 @@ fi # Remove all non-whitelisted objects from cache. cd $CACHED_DIR -find . -type f -not \( -name 'python' -or -name 'python-version' -or -name 'python-stack' -or -name 'vendor' -or -name 'venv'\) -delete +find . -type f -not \( -name 'python' -or -name 'python-version' -or -name 'python-stack' -or -name 'vendor' -or -name 'venv' \) -delete cd $BUILD_DIR # Store new artifacts in cache. -- GitLab