aboutsummaryrefslogtreecommitdiff
path: root/scripts/laminar/gn3-mypy.sh
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-02-11 05:45:24 +0300
committerFrederick Muriuki Muriithi2022-02-11 05:52:36 +0300
commit651c8ad9ae20ab52e7ab694c0caa9d92774b49b5 (patch)
tree65c1f4033a672e65b7b5b6a87acfca9811e2eae2 /scripts/laminar/gn3-mypy.sh
parentfad6f623f204aa1064b48fe1d8cb575f270ac217 (diff)
downloadgenenetwork3-651c8ad9ae20ab52e7ab694c0caa9d92774b49b5.tar.gz
Quote shell variables to prevent globbing
Quote the shell variables to prevent globbing and word splitting. Deactivate this check for the specific lines that require intentional word splitting
Diffstat (limited to 'scripts/laminar/gn3-mypy.sh')
-rw-r--r--scripts/laminar/gn3-mypy.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/laminar/gn3-mypy.sh b/scripts/laminar/gn3-mypy.sh
index a2a9782..6d04c35 100644
--- a/scripts/laminar/gn3-mypy.sh
+++ b/scripts/laminar/gn3-mypy.sh
@@ -4,7 +4,7 @@ set -e # Abort on first error
CUR_DIR=$PWD
GN3_CI_DIR=$HOME/CI/genenetwork3/
-cd $GN3_CI_DIR
+cd "${GN3_CI_DIR}"
git pull
# Run Pylint
@@ -12,4 +12,4 @@ env GUIX_PACKAGE_PATH="$HOME/guix-bioinformatics:$HOME/guix-past/modules" \
guix environment --load=guix.scm -- mypy .
echo Done Running MyPy!
-cd $CUR_DIR
+cd "${CUR_DIR}"