From 555d5bd2be6feddc1c080918975ce429a4f9c68a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Mon, 19 Dec 2016 16:42:33 -0500 Subject: [PATCH] cp the cache --- bin/compile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/compile b/bin/compile index dcd59914..be26cc88 100755 --- a/bin/compile +++ b/bin/compile @@ -142,6 +142,11 @@ bpwatch start restore_cache cp -R $CACHE_DIR/.heroku/vendor .heroku/ &> /dev/null || true cp -R $CACHE_DIR/.heroku/venv .heroku/ &> /dev/null || true + if [[ -d $CACHE_DIR/.heroku/src ]]; then + cp -R $CACHE_DIR/.heroku/src .heroku/ &> /dev/null || true + fi + + bpwatch stop restore_cache mkdir -p $(dirname $PROFILE_PATH) -- GitLab