From 2a74d53db7d53e2d6e5af4a7c9266b44c2da9ccd Mon Sep 17 00:00:00 2001 From: Hari Sekhon Date: Wed, 2 Aug 2017 16:18:39 +0200 Subject: [PATCH] updated check_shell_syntax.sh --- check_shell_syntax.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/check_shell_syntax.sh b/check_shell_syntax.sh index 84648914..4b653f09 100755 --- a/check_shell_syntax.sh +++ b/check_shell_syntax.sh @@ -29,6 +29,7 @@ fi section "Shell Syntax Checks" for x in $(find -L "${1:-.}" -type f -iname '*.sh'); do + isExcluded "$x" && continue echo -n "checking shell syntax: $x" bash -n "$x" echo " => OK"