From ec4bf4eca3009abc43e338ecae56cdee35b0e196 Mon Sep 17 00:00:00 2001 From: Joe AE6XE Date: Wed, 11 Jul 2018 14:15:09 -0700 Subject: [PATCH] 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. --- scripts/tests/prebuild/002-usrlocalbin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tests/prebuild/002-usrlocalbin.sh b/scripts/tests/prebuild/002-usrlocalbin.sh index 3a1767b4..57d9ed31 100755 --- a/scripts/tests/prebuild/002-usrlocalbin.sh +++ b/scripts/tests/prebuild/002-usrlocalbin.sh @@ -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