commit 57f6f8ec4b1d8698d32f59ab274c97d1bf9321d7 from: Stefan Sperling via: Thomas Adam date: Sun Feb 16 13:44:27 2025 UTC avoid use of an undefined variable in test_tag_created and test_tag_changed commit - 0907144484e18e77a7d91662083201065b020bac commit + 57f6f8ec4b1d8698d32f59ab274c97d1bf9321d7 blob - 47fa2440bf33ee2aaeb5666989e980ead4619543 blob + a394b238427aae690c7afae614a4e0e6b9de122d --- regress/gotd/email_notification.sh +++ regress/gotd/email_notification.sh @@ -418,7 +418,7 @@ test_tag_created() { local commit_id=`git_show_head $testroot/repo-clone` local tagger_time=`git_show_tagger_time $testroot/repo-clone 1.0` local tag_id=`got ref -r $testroot/repo-clone -l \ - | grep "^refs/tags/$tag" | tr -d ' ' | cut -d: -f2` + | grep "^refs/tags/1.0" | tr -d ' ' | cut -d: -f2` local short_tag_id=`trim_obj_id 12 $tag_id` (printf "220\r\n250\r\n250\r\n250\r\n354\r\n250\r\n221\r\n" \ @@ -499,7 +499,7 @@ test_tag_changed() { got tag -r $testroot/repo-clone -m "new tag" 1.0 > /dev/null local tagger_time=`git_show_tagger_time $testroot/repo-clone 1.0` local tag_id=`got ref -r $testroot/repo-clone -l \ - | grep "^refs/tags/$tag" | tr -d ' ' | cut -d: -f2` + | grep "^refs/tags/1.0" | tr -d ' ' | cut -d: -f2` local short_tag_id=`trim_obj_id 12 $tag_id` (printf "220\r\n250\r\n250\r\n250\r\n354\r\n250\r\n221\r\n" \