From c507cf594374787696f599dd55d449c2907b52dd Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Tue, 7 Jan 2020 14:41:12 -0600 Subject: [PATCH] fix mistake --- lib/linter.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linter.sh b/lib/linter.sh index 05796375..5f0174bd 100755 --- a/lib/linter.sh +++ b/lib/linter.sh @@ -1762,7 +1762,7 @@ LintAnsibleFiles() # Set the list to empty if only MD and TXT files were changed # ############################################################### # No need to run the full ansible checks on read only file changes - if [ "$READ_ONLY_CHANGE_FLAG" eq 0 ]; then + if [ "$READ_ONLY_CHANGE_FLAG" -eq 0 ]; then LIST_FILES=() fi