From: Ian Jackson Date: Sat, 4 Jul 2015 23:06:29 +0000 (+0100) Subject: dgit: Do not verify the tag with git tag -v as well as git verify-tag, ie suppress... X-Git-Tag: debian/0.30~4 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=e7c34101d87a60d326b657432f19e2b15edb8471 dgit: Do not verify the tag with git tag -v as well as git verify-tag, ie suppress some noise output. --- diff --git a/debian/changelog b/debian/changelog index 9e8f5729..852e0798 100644 --- a/debian/changelog +++ b/debian/changelog @@ -98,6 +98,8 @@ dgit (0.23~) unstable; urgency=low * dgit: Be more careful about tag updates during fetch: only update tags referring to uploads to distro we are trying to fetch from. * dgit: Set up a merge driver for debian/changelog. Closes:#769291. + * dgit: Do not verify the tag with git tag -v as well as git verify-tag, + ie suppress some noise output. -- diff --git a/dgit b/dgit index 366c4566..066f2a6c 100755 --- a/dgit +++ b/dgit @@ -1823,7 +1823,6 @@ sub dopush ($) { my $tag_obj_hash = cmdoutput @git, qw(hash-object -w -t tag), $tagobjfn; runcmd_ordryrun @git, qw(verify-tag), $tag_obj_hash; runcmd_ordryrun_local @git, qw(update-ref), "refs/tags/$tag", $tag_obj_hash; - runcmd_ordryrun @git, qw(tag -v --), $tag; if (!check_for_git()) { create_remote_git_repo();