From b84212aeed94d5a392b8691ceb8b4169a1434f22 Mon Sep 17 00:00:00 2001 From: microwavedcola1 Date: Wed, 1 Feb 2023 13:49:31 +0100 Subject: [PATCH] add script to rename tag added by npm Signed-off-by: microwavedcola1 --- fix-npm-tag.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 fix-npm-tag.sh diff --git a/fix-npm-tag.sh b/fix-npm-tag.sh new file mode 100755 index 000000000..417c35037 --- /dev/null +++ b/fix-npm-tag.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +set -ex pipefail + +git tag npm-$TAG $TAG; git tag -d $TAG; git push --tags \ No newline at end of file