From f58fe3ad009decc84f5e85f39d877c103d4ee31a Mon Sep 17 00:00:00 2001 From: Casey Faist <caseylfaist@gmail.com> Date: Mon, 8 Oct 2018 17:15:17 -0500 Subject: [PATCH] add double quotes to prevent globbing --- bin/steps/pipenv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/steps/pipenv b/bin/steps/pipenv index 92e4a2c0..6df96dc5 100755 --- a/bin/steps/pipenv +++ b/bin/steps/pipenv @@ -58,7 +58,7 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then fi # Install pipenv; do not upgrade. - /app/.heroku/python/bin/pip install pipenv==$PIPENV_VERSION &> /dev/null + /app/.heroku/python/bin/pip install "pipenv==$PIPENV_VERSION" &> /dev/null # Install the dependencies. if [[ ! -f Pipfile.lock ]]; then -- GitLab