3
0
Fork 0
mirror of https://github.com/dtolnay/install.git synced 2024-11-21 16:09:32 +01:00

Spell out tag delete flag

This commit is contained in:
David Tolnay 2022-06-26 12:26:10 -07:00
parent 3a5eecab54
commit 93373315d5
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -25,7 +25,7 @@ push=()
for crate in "$@"; do
(
set -x
git tag -d "$crate" &>/dev/null || true
git tag --delete "$crate" &>/dev/null || true
git checkout --quiet origin/"$crate"
git rebase --quiet "$base"
)