From fb583ae43b3e0da7a85d0c4fd9d73c0a5b745b84 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Wed, 8 Jan 2020 13:37:02 -0600 Subject: [PATCH] fix rules --- lib/linter.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/linter.sh b/lib/linter.sh index cbe7f376..a6caa3dc 100755 --- a/lib/linter.sh +++ b/lib/linter.sh @@ -143,6 +143,7 @@ GetLinterVersions() ################### # Get the version # ################### + # shellcheck disable=SC2207 GET_VERSION_CMD=($("$LINTER" --version 2>&1)) ####################### @@ -160,7 +161,7 @@ GetLinterVersions() ########################## # Print the version info # ########################## - echo "$GET_VERSION_CMD[*]" + echo "${GET_VERSION_CMD[*]}" echo "---------------------------------------------" fi done