Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
release.pl: don't created branches from tag names
(cherry picked from commit 919c54e)
  • Loading branch information
jef-n committed May 4, 2016
1 parent dd136f6 commit ff81b82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/release.pl
Expand Up @@ -202,11 +202,11 @@ ($$)
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
Expand Down

0 comments on commit ff81b82

Please sign in to comment.