File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,14 @@ sub updateCMakeLists {
77
77
my $relbranch = " release-${newmajor} _${newminor} " ;
78
78
my $reltag = " final-${newmajor} _${newminor} _0" ;
79
79
80
+ print " Pulling transifex translations...\n " );
81
+ system ( " scripts/pull_ts.sh" ) == 0 or die " pull_ts.sh failed" ;
82
+ system ( " git commit -a -m \" translation update to $release from transifex\" " ) == 0 or die " could not commit translation updates" ;
83
+
84
+ print " Updating changelog...\n " );
85
+ system ( " scripts/create_changelog.sh" ) == 0 or die " create_changelog.sh failed" ;
86
+ system ( " git commit -a -m \" changelog update for $release \" " ) == 0 or die " could not commit changelog update" ;
87
+
80
88
print " Creating branch...\n " ;
81
89
system ( " git checkout -b $relbranch " ) == 0 or die " git checkout release branch failed" ;
82
90
updateCMakeLists($newmajor ,$newminor ,$releasename );
You can’t perform that action at this time.
0 commit comments