diff --git a/lib/linter.sh b/lib/linter.sh index 3a89deba..aa83cc95 100755 --- a/lib/linter.sh +++ b/lib/linter.sh @@ -1614,8 +1614,8 @@ StandardLint() # Lint the file with the rules # ################################ echo " - Utilizing Env:[$ENV_STRING]" - echo "Running Command:[standard $ENV_STRING $FILE]" - STANDARD_LINT_CMD=$(standard "$ENV_STRING" "$FILE" 2>&1) + # shellcheck disable=SC2086 + STANDARD_LINT_CMD=$(standard $ENV_STRING "$FILE" 2>&1) ####################### # Load the error code #