Skip to content

Commit 2d5b12c

Browse files
authored
Merge pull request #1036 from spacewander/del
git-delete-tag: should not be quoted
2 parents d5eaa18 + 7535557 commit 2d5b12c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

bin/git-delete-tag

Lines changed: 4 additions & 2 deletions
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)