Skip to content

Commit

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

2 comments on commit 919c54e

@m-kuhn
Copy link
Member

@m-kuhn m-kuhn commented on 919c54e May 4, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Glad you figured it out despite the deleted branch.

@jef-n
Copy link
Member Author

@jef-n jef-n commented on 919c54e May 4, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@m-kuhn I had the final-2_14_1 branch as backup ;)

Please sign in to comment.