diff --git a/bin/steps/pipenv b/bin/steps/pipenv index ef6d17b91280b94ef34c3091806754b7b79baee5..e7624dca9f0120206fa597db76835aab793af090 100644 --- a/bin/steps/pipenv +++ b/bin/steps/pipenv @@ -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.