Skip to content

Commit f0081e6

Browse files
committed
Fix new shellcheck warnings breaking periodic CI
New warnings were found in our periodic (CRON) CI jobs. Fixes https://travis-ci.org/heroku/heroku-buildpack-python/jobs/383404864
1 parent b0f4957 commit f0081e6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bin/steps/collectstatic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# - $DEBUG_COLLECTSTATIC: upon failure, print out environment variables.
1212

1313
# shellcheck source=bin/utils
14-
source $BIN_DIR/utils
14+
source "$BIN_DIR/utils"
1515

1616
# Location of 'manage.py', if it exists.
1717
MANAGE_FILE=$(find . -maxdepth 3 -type f -name 'manage.py' -printf '%d\t%P\n' | sort -nk1 | cut -f2 | head -1)

bin/steps/pip-install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
# shellcheck source=bin/utils
4-
source $BIN_DIR/utils
4+
source "$BIN_DIR/utils"
55

66
if [ ! "$SKIP_PIP_INSTALL" ]; then
77

bin/steps/pip-uninstall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set +e
44
# Install dependencies with Pip.
55
# shellcheck source=bin/utils
6-
source $BIN_DIR/utils
6+
source "$BIN_DIR/utils"
77

88
if [ ! "$SKIP_PIP_INSTALL" ]; then
99

bin/steps/pipenv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# export CLINT_FORCE_COLOR=1
44
# export PIPENV_FORCE_COLOR=1
55
# shellcheck source=bin/utils
6-
source $BIN_DIR/utils
6+
source "$BIN_DIR/utils"
77
set -e
88

99
if [[ -f Pipfile.lock ]]; then

0 commit comments

Comments
 (0)