Don't skip install if clearing cache

This commit is contained in:
Casey Faist
2020-03-19 17:20:58 -04:00
parent 6a02499140
commit dee86babe1
+2
View File
@@ -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