Don't update to use pip cache, yet

Also fix whitespace
This commit is contained in:
Casey Faist
2020-03-26 11:34:32 -04:00
parent bf1563eaa0
commit 6b9ffb92d9
+1 -2
View File
@@ -48,8 +48,7 @@ if [ ! "$SKIP_PIP_INSTALL" ]; then
exit 1
fi
/app/.heroku/python/bin/pip install -r "$BUILD_DIR/requirements.txt" --exists-action=w --src=/app/.heroku/src --disable-pip-version-check | tee "$WARNINGS_LOG" | cleanup | indent
/app/.heroku/python/bin/pip install -r "$BUILD_DIR/requirements.txt" --exists-action=w --src=/app/.heroku/src --disable-pip-version-check --no-cache-dir 2>&1 | tee "$WARNINGS_LOG" | cleanup | indent
PIP_STATUS="${PIPESTATUS[0]}"
set -e