Revert "fix prebuild shellcheck tests to run properly with external sources (#5)"

This change brought compatibilty to newer versions of shellcheck.
Unfortanately, current linux OS' do not offer this newer version
and a higher burden to compile and install shellcheck is required.
Consequently, this upgrade will be defered until newer versions
of shellcheck are included by default in linux distribtuions.
This commit is contained in:
Joe AE6XE 2018-07-11 14:15:09 -07:00
parent 360786c22e
commit ec4bf4eca3
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ do
if [ "$SHELLCHECKNOTEXISTS" = "1" ]; then
juLog -name="usrlocalbin_$(basename "$file")" false # Consider test failed if we don't have shellcheck
else
juLog -name="usrlocalbin_$(basename "$file")" shellcheck -x "$file"
juLog -name="usrlocalbin_$(basename "$file")" shellcheck "$file"
fi
continue # Next file please
fi