From 619307fe9fa875bc39e81836eda658f7d78a3a4f Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Mon, 27 Apr 2020 14:38:43 -0500 Subject: [PATCH] get the value --- lib/linter.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/linter.sh b/lib/linter.sh index 24e27c80..12c799db 100755 --- a/lib/linter.sh +++ b/lib/linter.sh @@ -1755,9 +1755,9 @@ Footer() ################## # Print if not 0 # ################## - if [ "${ERROR_COUNTER}" -ne 0 ]; then + if [ "${!ERROR_COUNTER}" -ne 0 ]; then # Print the goods - echo "ERRORS FOUND in $LANGUAGE:[$ERROR_COUNTER]" + echo "ERRORS FOUND in $LANGUAGE:[${!ERROR_COUNTER}]" fi done