From a3675f9c2ae2865d2f5a071a3ce8ada11faa73d9 Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.org>
Date: Tue, 26 Sep 2017 10:20:06 -0400
Subject: [PATCH] try this

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
---
 bin/steps/pipenv | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/steps/pipenv b/bin/steps/pipenv
index ef6d17b9..e7624dca 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.
 
-- 
GitLab