no more bash

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-26 10:54:00 -04:00
parent f9b74e8bfe
commit ebe3ff2e2f
+2 -2
View File
@@ -13,9 +13,9 @@ if [[ -f Pipfile ]]; then
/app/.heroku/python/bin/pip install git+https://github.com/kennethreitz/pipenv.git#egg=pipenv --upgrade &> /dev/null
if [[ ! -f Pipfile.lock ]]; then
bash -c "/app/.heroku/python/bin/pipenv install --system --skip-lock" 2>&1 | indent
/app/.heroku/python/bin/pipenv install --system --skip-lock 2>&1 | indent
else
bash -c "/app/.heroku/python/bin/pipenv install --system" 2>&1 | indent
/app/.heroku/python/bin/pipenv install --system 2>&1 | indent
fi
# Install the dependencies.