mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 08:41:02 -05:00
Fix tmppath detection
This commit is contained in:
parent
211a22c329
commit
524ebed9cd
1 changed files with 1 additions and 1 deletions
2
.vscode/testlinter.sh
vendored
2
.vscode/testlinter.sh
vendored
|
@ -3,7 +3,7 @@
|
||||||
#You can also use ln -s /path /tmp/lint as an alternative
|
#You can also use ln -s /path /tmp/lint as an alternative
|
||||||
#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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue