fix: use long option to delete tag in git push
This commit is contained in:
parent
39536fa34e
commit
d8208237f2
@ -108,7 +108,7 @@ async function deleteTag(origin, tagName) {
|
||||
debug('delete local tag', shell);
|
||||
|
||||
// Delete the tag remotely
|
||||
shell = await execa('git', ['push', '-d', origin, tagName], {reject: false});
|
||||
shell = await execa('git', ['push', '--delete', origin, tagName], {reject: false});
|
||||
debug('delete remote tag', shell);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user