mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-25 07:31:05 -05:00
get the value
This commit is contained in:
parent
7cb80134b1
commit
619307fe9f
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue