From 5479e29632536daa7775c7d146b8122653fdbdcc Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 18:02:57 -0600 Subject: [PATCH] appease the linter --- script/release | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/release b/script/release index 0b79fb7..f030a1d 100755 --- a/script/release +++ b/script/release @@ -14,11 +14,11 @@ # COLORS OFF='\033[0m' -RED='\033[0;31m' +# RED='\033[0;31m' GREEN='\033[0;32m' BLUE='\033[0;34m' -latest_tag=$(git describe --tags $(git rev-list --tags --max-count=1)) +latest_tag=$(git describe --tags "$(git rev-list --tags --max-count=1)") # if the latest_tag is empty, then there are no tags - let the user know if [[ -z "$latest_tag" ]]; then