Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-26 10:20:06 -04:00
parent 3b3cb9e6c0
commit a3675f9c2a
+2 -2
View File
@@ -11,9 +11,9 @@ if [[ -f Pipfile ]]; then
/app/.heroku/python/bin/pip install pipenv --upgrade &> /dev/null
if [[ ! -f Pipfile.lock ]]; then
bash --init-file <(echo "/app/.heroku/python/bin/pipenv install --system --skip-lock") 2>&1 | indent
bash -c "/app/.heroku/python/bin/pipenv install --system --skip-lock" 2>&1 | indent
else
bash --init-file <(echo "/app/.heroku/python/bin/pipenv install --system") 2>&1 | indent
bash -c "/app/.heroku/python/bin/pipenv install --system" 2>&1 | indent
fi
# Install the dependencies.