From aaea65e3d89819eaf6f1b58aaa217b9c5d86d67c Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Thu, 12 Dec 2019 13:51:13 -0600 Subject: [PATCH] remove quotes --- lib/linter.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/linter.sh b/lib/linter.sh index 3a89deba..7e1b3d4b 100755 --- a/lib/linter.sh +++ b/lib/linter.sh @@ -1614,8 +1614,7 @@ 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) + STANDARD_LINT_CMD=$(standard $ENV_STRING "$FILE" 2>&1) ####################### # Load the error code #