From 5a47b1a3f74153c7f7a29b3f475b4613c4dc5227 Mon Sep 17 00:00:00 2001 From: John Van de Meulebrouck Brendgard Date: Thu, 16 Nov 2023 12:04:30 +0100 Subject: [PATCH] Readded this_branch=$(git rev-parse --abbrev-ref HEAD) since it wasn't included in change to check against the current branch instead of master --- bump-tag | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bump-tag b/bump-tag index 2c06d7e..8a9b6e6 100755 --- a/bump-tag +++ b/bump-tag @@ -36,6 +36,9 @@ else tagpfx="${deftag}" fi +# This is the current branch that Git will diff against. +this_branch=$(git rev-parse --abbrev-ref HEAD) + # Check why the tag couldn't be verified # First argument: the tag to investigate check_tag_sig_failure()