From 43c2d7b8657fae626567162ee0ddcd7bd5e97a50 Mon Sep 17 00:00:00 2001 From: Paul Ebose Date: Mon, 1 Jul 2024 03:25:01 +0100 Subject: [PATCH] spell out the git command flags used --- script/release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/release b/script/release index 44c81bd..6459a1f 100755 --- a/script/release +++ b/script/release @@ -69,7 +69,7 @@ if [[ ! ($YN == "y" || $YN == "Y") ]]; then fi # Tag the new release -git tag -a "$new_tag" -m "$new_tag Release" +git tag "$new_tag" --annotate --message "$new_tag Release" echo -e "Tagged: ${BOLD_GREEN}$new_tag${OFF}" # Push the new tag to the remote