File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11
11
# - $DEBUG_COLLECTSTATIC: upon failure, print out environment variables.
12
12
13
13
# shellcheck source=bin/utils
14
- source $BIN_DIR /utils
14
+ source " $BIN_DIR /utils"
15
15
16
16
# Location of 'manage.py', if it exists.
17
17
MANAGE_FILE=$( find . -maxdepth 3 -type f -name ' manage.py' -printf ' %d\t%P\n' | sort -nk1 | cut -f2 | head -1)
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
3
# shellcheck source=bin/utils
4
- source $BIN_DIR /utils
4
+ source " $BIN_DIR /utils"
5
5
6
6
if [ ! " $SKIP_PIP_INSTALL " ]; then
7
7
Original file line number Diff line number Diff line change 3
3
set +e
4
4
# Install dependencies with Pip.
5
5
# shellcheck source=bin/utils
6
- source $BIN_DIR /utils
6
+ source " $BIN_DIR /utils"
7
7
8
8
if [ ! " $SKIP_PIP_INSTALL " ]; then
9
9
Original file line number Diff line number Diff line change 3
3
# export CLINT_FORCE_COLOR=1
4
4
# export PIPENV_FORCE_COLOR=1
5
5
# shellcheck source=bin/utils
6
- source $BIN_DIR /utils
6
+ source " $BIN_DIR /utils"
7
7
set -e
8
8
9
9
if [[ -f Pipfile.lock ]]; then
You can’t perform that action at this time.
0 commit comments