From 7881998765a80bf68126cecbed99de4b5d170279 Mon Sep 17 00:00:00 2001 From: David Murphy Date: Tue, 9 Jul 2024 13:17:01 -0600 Subject: [PATCH] Disable Shell Check SC2086, Double quote to prevent globbing and word splitting --- bootstrap-salt.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 4c9f83b..9cb3926 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -4,7 +4,8 @@ # Please submit pull requests against the salt-bootstrap repo: # https://github.com/saltstack/salt-bootstrap # shellcheck disable=SC2317 - +# shellcheck disable=SC2086 +# #====================================================================================================================== # vim: softtabstop=4 shiftwidth=4 expandtab fenc=utf-8 spell spelllang=en cc=120 #====================================================================================================================== @@ -24,7 +25,7 @@ #====================================================================================================================== set -o nounset # Treat unset variables as an error -__ScriptVersion="2024.07.01" +__ScriptVersion="2024.07.09" __ScriptName="bootstrap-salt.sh" __ScriptFullName="$0"