mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 08:41:02 -05:00
Fix bash lint errors
This commit is contained in:
parent
26d2ec1d2a
commit
172e29dad3
1 changed files with 3 additions and 2 deletions
5
.vscode/testlinter.sh
vendored
5
.vscode/testlinter.sh
vendored
|
@ -4,8 +4,9 @@
|
||||||
#If you do neither, this will default to running against the test automation files
|
#If you do neither, this will default to running against the test automation files
|
||||||
tmppath=/tmp/lint
|
tmppath=/tmp/lint
|
||||||
if [ ! -L $tmppath ]; then
|
if [ ! -L $tmppath ]; then
|
||||||
ln -s $PWD/.automation/test $tmppath
|
ln -s "$PWD"/.automation/test $tmppath
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export RUN_LOCAL=true
|
export RUN_LOCAL=true
|
||||||
source $PWD/lib/linter.sh
|
# shellcheck source=lib/linter.sh
|
||||||
|
source "$PWD"/lib/linter.sh
|
Loading…
Reference in a new issue