X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=builtin-tag.c;h=1ff7b37162185a70de5183dd55819f6b11fa6688;hb=efcce2e1f0b37aed045d3e2b747380adf418bdd2;hp=b13fa34d8c59a9226599ba10b4d679f41ad230b0;hpb=f4a75a416f62c0494e06cb42a11c7cc70ec9303e;p=git.git diff --git a/builtin-tag.c b/builtin-tag.c index b13fa34d8..1ff7b3716 100644 --- a/builtin-tag.c +++ b/builtin-tag.c @@ -125,7 +125,7 @@ static int for_each_tag_name(const char **argv, each_tag_name_fn fn) static int delete_tag(const char *name, const char *ref, const unsigned char *sha1) { - if (delete_ref(ref, sha1)) + if (delete_ref(ref, sha1, 0)) return 1; printf("Deleted tag '%s'\n", name); return 0;