From dee86babe1f3015673bd4666781a87863eaa8110 Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Thu, 19 Mar 2020 17:20:58 -0400 Subject: [PATCH] Don't skip install if clearing cache --- bin/steps/python | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/steps/python b/bin/steps/python index 92cf400..1c09807 100755 --- a/bin/steps/python +++ b/bin/steps/python @@ -106,6 +106,7 @@ if [[ ! -f "$CACHE_DIR/.heroku/requirements.txt" ]]; then # if there are any differences, clear the Python cache # Installing Python over again does not take noticably more time rm -rf .heroku/python + unset SKIP_INSTALL fi else # IF there IS a cached directory, check for differences with the new one @@ -114,6 +115,7 @@ else # if there are any differences, clear the Python cache # Installing Python over again does not take noticably more time rm -rf .heroku/python + unset SKIP_INSTALL fi fi