release.pl: don't created branches from tag names

This commit is contained in:
Juergen E. Fischer 2016-05-04 12:29:16 +02:00
parent 99e5352d00
commit 919c54ef5f

View File

@ -211,11 +211,11 @@ unless( $dopoint ) {
run( "git commit -a -m 'Bump version to $newmajor.$newminor'", "bump version failed" );
}
my $topush = ($dopoint ? "" : "master ") . "$relbranch $reltag $ltrtag";
my $topush = ($dopoint ? "" : "master ") . "$relbranch";
print "Push dry-run...\n";
run( "git push -n origin $topush", "push dry run failed" );
print "Now manually push and upload the tarballs :\n\tgit push origin $topush\n\trsync qgis-$version.tar.bz2* qgis.org:/var/www/downloads/\n\n";
run( "git push -n --follow-tags origin $topush", "push dry run failed" );
print "Now manually push and upload the tarballs :\n\tgit push --follow-tags origin $topush\n\trsync qgis-$version.tar.bz2* qgis.org:/var/www/downloads/\n\n";
=head1 NAME