diff --git a/bin/steps/pipenv b/bin/steps/pipenv index d4080f9..ba3a2d3 100644 --- a/bin/steps/pipenv +++ b/bin/steps/pipenv @@ -12,9 +12,9 @@ if [[ -f Pipfile ]]; then /app/.heroku/python/bin/pip install pipenv --upgrade &> /dev/null if [[ ! -f Pipfile.lock ]]; then - bash -lic "/app/.heroku/python/bin/pipenv install --system --skip-lock" 2>&1 | indent + bash -ic "/app/.heroku/python/bin/pipenv install --system --skip-lock" 2>&1 | indent else - bash -lic "/app/.heroku/python/bin/pipenv install --system" 2>&1 | indent + bash -ic "/app/.heroku/python/bin/pipenv install --system" 2>&1 | indent fi # Install the dependencies.