From 1f12b196fd049058e1d12bdf8e9b01dd05f656f0 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 9 Sep 2022 12:59:22 -0700 Subject: When deleting a tag, del in the patches dir too. --- packaging/release-rsync | 2 ++ 1 file changed, 2 insertions(+) (limited to 'packaging') diff --git a/packaging/release-rsync b/packaging/release-rsync index f37bd184..9603fd10 100755 --- a/packaging/release-rsync +++ b/packaging/release-rsync @@ -105,6 +105,8 @@ def main(): if not re.match(r'^del', ans, flags=re.I): die("Aborted") cmd_chk(['git', 'tag', '-d', v_ver]) + if os.path.isdir('patches/.git'): + cmd_chk(f"cd patches && git tag -d '{v_ver}'") version = re.sub(r'[-.]*pre[-.]*', 'pre', version) if 'pre' in version and not curversion.endswith('dev'): -- cgit v1.2.1