From ebe3ff2e2fdd2844dca8496b26f7c0e4f8133806 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Tue, 26 Sep 2017 10:54:00 -0400 Subject: [PATCH] no more bash 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 5febd774..e399bc07 100644 --- a/bin/steps/pipenv +++ b/bin/steps/pipenv @@ -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. -- GitLab