From 0a4d32c8a53e5e195c6a9adf50f89d4f853ea45f Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Mon, 19 Dec 2016 16:39:34 -0500 Subject: [PATCH] cache src --- bin/compile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/compile b/bin/compile index 82a05edd..dcd59914 100755 --- a/bin/compile +++ b/bin/compile @@ -221,6 +221,7 @@ bpwatch start dump_cache rm -rf $CACHE_DIR/.heroku/python-stack rm -rf $CACHE_DIR/.heroku/vendor rm -rf $CACHE_DIR/.heroku/venv + rm -rf $CACHE_DIR/.heroku/src mkdir -p $CACHE_DIR/.heroku cp -R .heroku/python $CACHE_DIR/.heroku/ @@ -228,6 +229,7 @@ bpwatch start dump_cache cp -R .heroku/python-stack $CACHE_DIR/.heroku/ &> /dev/null || true cp -R .heroku/vendor $CACHE_DIR/.heroku/ &> /dev/null || true cp -R .heroku/venv $CACHE_DIR/.heroku/ &> /dev/null || true + cp -R .heroku/src $CACHE_DIR/.heroku/ &> /dev/null || true bpwatch stop dump_cache -- GitLab