X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=blobdiff_plain;f=dgit;h=e314791f63e82c525af6941459785d25451f2fec;hp=cd249b4226ada31ea2ae56a2e593a4c1cf5b715e;hb=3dadcb8d2d02e528c5bd817f706dd181e6326e39;hpb=f6561dc13583c0b0c242d39d0056368ba2020121 diff --git a/dgit b/dgit index cd249b42..e314791f 100755 --- a/dgit +++ b/dgit @@ -3817,8 +3817,12 @@ sub push_parse_changelog ($) { fail "-p specified $package but changelog specified $clogpackage" unless $package eq $clogpackage; my $cversion = getfield $clogp, 'Version'; - my $tag = debiantag($cversion, access_nomdistro); - runcmd @git, qw(check-ref-format), $tag; + + if (!$we_are_initiator) { + # rpush initiator can't do this because it doesn't have $isuite yet + my $tag = debiantag($cversion, access_nomdistro); + runcmd @git, qw(check-ref-format), $tag; + } my $dscfn = dscfn($cversion);