Unify bash variables usage and add quotes where needed

This commit is contained in:
Ayaz Salikhov
2021-05-26 13:06:10 +03:00
parent e9301f4115
commit 0999f1a36f
26 changed files with 186 additions and 186 deletions

View File

@@ -6,7 +6,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Setup environment
# shellcheck disable=SC1091
source "$DIR/env.sh"
source "${DIR}/env.sh"
# Bring down the notebook container, using container name as project name
docker-compose -f "$DIR/notebook.yml" -p "$NAME" down
docker-compose -f "${DIR}/notebook.yml" -p "${NAME}" down