Skip to content

Commit 7535557

Browse files
committed
git-delete-tag: should not be quoted
Otherwise the whole result will be considered one tag/ref. Signed-off-by: spacewander <spacewanderlzx@gmail.com>
1 parent d5eaa18 commit 7535557

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

bin/git-delete-tag

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,7 @@ do
2222
done
2323

2424
# Delete all the tags
25-
git tag -d "$local_tags"
26-
git push "$origin" "$origin_refs"
25+
# shellcheck disable=SC2086
26+
git tag -d $local_tags
27+
# shellcheck disable=SC2086
28+
git push "$origin" $origin_refs

0 commit comments

Comments
 (0)