From 172e29dad3e4d7768590e191201522ece5b384f9 Mon Sep 17 00:00:00 2001 From: Gabo Date: Thu, 25 Jun 2020 10:03:39 -0500 Subject: [PATCH] Fix bash lint errors --- .vscode/testlinter.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.vscode/testlinter.sh b/.vscode/testlinter.sh index f7e7eb79..c6a54f00 100644 --- a/.vscode/testlinter.sh +++ b/.vscode/testlinter.sh @@ -4,8 +4,9 @@ #If you do neither, this will default to running against the test automation files tmppath=/tmp/lint if [ ! -L $tmppath ]; then - ln -s $PWD/.automation/test $tmppath + ln -s "$PWD"/.automation/test $tmppath fi export RUN_LOCAL=true -source $PWD/lib/linter.sh \ No newline at end of file +# shellcheck source=lib/linter.sh +source "$PWD"/lib/linter.sh \ No newline at end of file