diff --git a/bin/steps/collectstatic b/bin/steps/collectstatic index d99f021ec497de377db7f78482964a08448c76fb..755b92790f64fe36c65df4fc03baa4f86ec76e1e 100755 --- a/bin/steps/collectstatic +++ b/bin/steps/collectstatic @@ -11,7 +11,7 @@ # - $DEBUG_COLLECTSTATIC: upon failure, print out environment variables. # shellcheck source=bin/utils -source $BIN_DIR/utils +source "$BIN_DIR/utils" # Location of 'manage.py', if it exists. MANAGE_FILE=$(find . -maxdepth 3 -type f -name 'manage.py' -printf '%d\t%P\n' | sort -nk1 | cut -f2 | head -1) diff --git a/bin/steps/pip-install b/bin/steps/pip-install index f28a9f92c5f6ab3999d8991e1bd66583cf480c57..1589d87fbc8d30e63be9b723138e16abde123046 100755 --- a/bin/steps/pip-install +++ b/bin/steps/pip-install @@ -1,7 +1,7 @@ #!/usr/bin/env bash # shellcheck source=bin/utils -source $BIN_DIR/utils +source "$BIN_DIR/utils" if [ ! "$SKIP_PIP_INSTALL" ]; then diff --git a/bin/steps/pip-uninstall b/bin/steps/pip-uninstall index cd97a8d612a22a92203fca2d09e53f80eb7b94ce..682b2c93cfd42a9a388e9d4bc43b6e08de32d8a2 100755 --- a/bin/steps/pip-uninstall +++ b/bin/steps/pip-uninstall @@ -3,7 +3,7 @@ set +e # Install dependencies with Pip. # shellcheck source=bin/utils -source $BIN_DIR/utils +source "$BIN_DIR/utils" if [ ! "$SKIP_PIP_INSTALL" ]; then diff --git a/bin/steps/pipenv b/bin/steps/pipenv index 59aab27bd355af69e258241f7980baf586c06c29..e7b2bd9fa816fca9d28405fcef403ebe50df635a 100755 --- a/bin/steps/pipenv +++ b/bin/steps/pipenv @@ -3,7 +3,7 @@ # export CLINT_FORCE_COLOR=1 # export PIPENV_FORCE_COLOR=1 # shellcheck source=bin/utils -source $BIN_DIR/utils +source "$BIN_DIR/utils" set -e if [[ -f Pipfile.lock ]]; then