From 7711b723d70f4de577b0ceb7432a2af011f20f8e Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Fri, 4 Oct 2024 06:34:11 -0800 Subject: [PATCH] Update scripts/verify_tag.sh Co-authored-by: Matt Fisher --- scripts/verify_tag.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/verify_tag.sh b/scripts/verify_tag.sh index 248bf4c6..55cac822 100755 --- a/scripts/verify_tag.sh +++ b/scripts/verify_tag.sh @@ -10,6 +10,6 @@ echo "${git_tag} ${current_version}" if [ $current_version == $git_tag ]; then echo "Version does match git tag" else - echo "Version does not match git tag! Pyproject.toml: ${current_version} vs Tag: ${git_tag} " + echo "Version does not match git tag! pyproject.toml: ${current_version} vs Tag: ${git_tag} " exit 1 fi