We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 1fbca7e commit cc42978Copy full SHA for cc42978
scripts/release.pl
@@ -207,7 +207,7 @@ ($$)
207
$newminor++;
208
209
print "Updating master...\n";
210
- run( "git checkout master", "checkout master failed" );
+ run( "git checkout $branch", "checkout master failed" );
211
212
if($dopremajor) {
213
print " Creating master_$newmajor...\n";
@@ -230,7 +230,7 @@ ($$)
230
run( "dch --newversion $newmajor.$newminor.0 'New development version $newmajor.$newminor after branch of $release'", "dch failed" );
231
run( "git commit -a -m 'Bump version to $newmajor.$newminor'", "bump version failed" );
232
233
- push @topush, "master";
+ push @topush, $branch;
234
}
235
236
push @topush, $relbranch;
0 commit comments