Skip to content
Snippets Groups Projects
Commit f58fe3ad authored by Casey Faist's avatar Casey Faist
Browse files

add double quotes to prevent globbing

parent 1d19621e
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,7 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then ...@@ -58,7 +58,7 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
fi fi
# Install pipenv; do not upgrade. # 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. # Install the dependencies.
if [[ ! -f Pipfile.lock ]]; then if [[ ! -f Pipfile.lock ]]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment