diff --git a/bin/steps/pipenv b/bin/steps/pipenv
index 91416f9b0e056b9cdb36db523c02873feb75f094..ef6d17b91280b94ef34c3091806754b7b79baee5 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
-            /app/.heroku/python/bin/pipenv install --system --skip-lock 2>&1 | indent
+            bash --init-file <(echo "/app/.heroku/python/bin/pipenv install --system --skip-lock") 2>&1 | indent
         else
-            /app/.heroku/python/bin/pipenv install --system 2>&1 | indent
+            bash --init-file <(echo "/app/.heroku/python/bin/pipenv install --system") 2>&1 | indent
         fi
         # Install the dependencies.