From 397f0595f75406241ea0fc65438418c031e23e55 Mon Sep 17 00:00:00 2001 From: Micke Nordin Date: Mon, 15 May 2023 14:29:05 +0200 Subject: [PATCH] If the variable GITTAGEXTRA is double quoted we get issues. Disable shellcheck for this instance --- bump-tag | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bump-tag b/bump-tag index 31bb72d..a6ccec7 100755 --- a/bump-tag +++ b/bump-tag @@ -53,8 +53,8 @@ fi echo -e "\e[1mONLY SIGN IF YOU APPROVE OF VERIFICATION AND DIFF ABOVE\e[0m" # GITTAGEXTRA is for putting things like "-u 2117364A" - -git tag "${GITTAGEXTRA}" -m bump. -s "${this_tag}" +# shellcheck disable=SC2086 +git tag ${GITTAGEXTRA} -m bump. -s "${this_tag}" git push git push --tags