File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ if [ ! "$SKIP_PIP_INSTALL" ]; then
42
42
exit 1
43
43
fi
44
44
45
- $BUILD_DIR /.heroku/python/bin/pip install -r " $BUILD_DIR /requirements.txt" --exists-action=w --src=$BUILD_DIR /.heroku/src --disable-pip-version-check --no-cache-dir 2>&1 | tee " $WARNINGS_LOG " | cleanup | indent
45
+ " $BUILD_DIR /.heroku/python/bin/pip" install -r " $BUILD_DIR /requirements.txt" --exists-action=w --src=" $BUILD_DIR /.heroku/src" --disable-pip-version-check --no-cache-dir 2>&1 | tee " $WARNINGS_LOG " | cleanup | indent
46
46
PIP_STATUS=" ${PIPESTATUS[0]} "
47
47
set -e
48
48
Original file line number Diff line number Diff line change @@ -58,12 +58,12 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
58
58
# Due to weird old pip behavior and pipenv behavior, pipenv upgrades pip
59
59
# to latest if only --upgrade is specified. Specify upgrade strategy to
60
60
# avoid this eager behavior.
61
- $BUILD_DIR /.heroku/python/bin/pip install pipenv==$PIPENV_VERSION --upgrade --upgrade-strategy only-if-needed & > /dev/null
61
+ " $BUILD_DIR /.heroku/python/bin/pip" install pipenv==$PIPENV_VERSION --upgrade --upgrade-strategy only-if-needed & > /dev/null
62
62
63
63
# Install the test dependencies, for CI.
64
64
if [ " $INSTALL_TEST " ]; then
65
65
puts-step " Installing test dependencies…"
66
- /app/ .heroku/python/bin/pipenv install --dev --system --deploy 2>&1 | cleanup | indent
66
+ " $BUILD_DIR / .heroku/python/bin/pipenv" install --dev --system --deploy 2>&1 | cleanup | indent
67
67
68
68
# Install the dependencies.
69
69
elif [[ ! -f Pipfile.lock ]]; then
Original file line number Diff line number Diff line change @@ -116,8 +116,8 @@ if [ "$FRESH_PYTHON" ] || [[ ! $(pip --version) == *$PIP_UPDATE* ]]; then
116
116
rm -fr " $BUILD_DIR /.heroku/python/lib/python*/site-packages/pip-*"
117
117
rm -fr " $BUILD_DIR /.heroku/python/lib/python*/site-packages/setuptools-*"
118
118
119
- $BUILD_DIR /.heroku/python/bin/python " $ROOT_DIR /get-pip.py" pip==" $PIP_UPDATE " & > /dev/null
120
- $BUILD_DIR /.heroku/python/bin/pip install " $ROOT_DIR /vendor/setuptools-39.0.1-py2.py3-none-any.whl" & > /dev/null
119
+ " $BUILD_DIR /.heroku/python/bin/python" " $ROOT_DIR /get-pip.py" pip==" $PIP_UPDATE " & > /dev/null
120
+ " $BUILD_DIR /.heroku/python/bin/pip" install " $ROOT_DIR /vendor/setuptools-39.0.1-py2.py3-none-any.whl" & > /dev/null
121
121
fi
122
122
123
123
set -e
You can’t perform that action at this time.
0 commit comments