mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
Merge pull request #1036 from spacewander/del
git-delete-tag: should not be quoted
This commit is contained in:
commit
2d5b12c01f
|
|
@ -22,5 +22,7 @@ do
|
|||
done
|
||||
|
||||
# Delete all the tags
|
||||
git tag -d "$local_tags"
|
||||
git push "$origin" "$origin_refs"
|
||||
# shellcheck disable=SC2086
|
||||
git tag -d $local_tags
|
||||
# shellcheck disable=SC2086
|
||||
git push "$origin" $origin_refs
|
||||
|
|
|
|||
Loading…
Reference in a new issue