Skip to content
Snippets Groups Projects
Commit 57ec0c38 authored by Ally Weir's avatar Ally Weir
Browse files

Fix shellcheck linting issues

parent f1e1df2f
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
# - $DEBUG_COLLECTSTATIC: upon failure, print out environment variables. # - $DEBUG_COLLECTSTATIC: upon failure, print out environment variables.
# shellcheck source=bin/utils # shellcheck source=bin/utils
source $BIN_DIR/utils source "$BIN_DIR/utils"
# Location of 'manage.py', if it exists. # 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) MANAGE_FILE=$(find . -maxdepth 3 -type f -name 'manage.py' -printf '%d\t%P\n' | sort -nk1 | cut -f2 | head -1)
......
#!/usr/bin/env bash #!/usr/bin/env bash
# shellcheck source=bin/utils # shellcheck source=bin/utils
source $BIN_DIR/utils source "$BIN_DIR/utils"
if [ ! "$SKIP_PIP_INSTALL" ]; then if [ ! "$SKIP_PIP_INSTALL" ]; then
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
set +e set +e
# Install dependencies with Pip. # Install dependencies with Pip.
# shellcheck source=bin/utils # shellcheck source=bin/utils
source $BIN_DIR/utils source "$BIN_DIR/utils"
if [ ! "$SKIP_PIP_INSTALL" ]; then if [ ! "$SKIP_PIP_INSTALL" ]; then
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# export CLINT_FORCE_COLOR=1 # export CLINT_FORCE_COLOR=1
# export PIPENV_FORCE_COLOR=1 # export PIPENV_FORCE_COLOR=1
# shellcheck source=bin/utils # shellcheck source=bin/utils
source $BIN_DIR/utils source "$BIN_DIR/utils"
set -e set -e
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