File tree Expand file tree Collapse file tree 6 files changed +13
-8
lines changed Expand file tree Collapse file tree 6 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -314,7 +314,7 @@ var qmGit = {
314314 outputCommitMessageAndBranch : function ( ) {
315315 qmGit . getCommitMessage ( function ( commitMessage ) {
316316 qmGit . setBranchName ( function ( ) {
317- qmLog . info ( "===== Building " + commitMessage + " on " + qmGit . getBranchName ( ) + " =====" ) ;
317+ qmLog . info ( "=====\nBuilding\n " + commitMessage + "\non branch: " + qmGit . getBranchName ( ) + "\n =====" ) ;
318318 } ) ;
319319 } ) ;
320320 } ,
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ var qmGit = {
6363 outputCommitMessageAndBranch : function ( ) {
6464 qmGit . getCommitMessage ( function ( commitMessage ) {
6565 qmGit . setBranchName ( function ( branchName ) {
66- qmLog . info ( "===== Building " + commitMessage + " on " + branchName + " =====" ) ;
66+ qmLog . info ( "=====\nBuilding\n " + commitMessage + "\non branch: " + branchName + "\n =====" ) ;
6767 } )
6868 } )
6969 } ,
@@ -134,4 +134,4 @@ var qmGit = {
134134 return options ;
135135 }
136136} ;
137- if ( typeof window !== "undefined" ) { window . qmGit = qmGit ; } else { module . exports = qmGit ; }
137+ if ( typeof window !== "undefined" ) { window . qmGit = qmGit ; } else { module . exports = qmGit ; }
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ var qmLog = {
190190 outputCommitMessageAndBranch : function ( ) {
191191 qmLog . qmGit . getCommitMessage ( function ( commitMessage ) {
192192 qmLog . qmGit . setBranchName ( function ( branchName ) {
193- qmLog . info ( "===== Building " + commitMessage + " on " + branchName + " =====" ) ;
193+ qmLog . info ( "=====\nBuilding\n " + commitMessage + "\non branch: " + branchName + "\n =====" ) ;
194194 } )
195195 } )
196196 } ,
Original file line number Diff line number Diff line change 9999 "@types/mime" : " 2.0.3" ,
100100 "@types/mocha" : " 8.2.2" ,
101101 "@types/node" : " 10.17.56" ,
102- "@types/node-fetch" : " ^ 2.5.10" ,
102+ "@types/node-fetch" : " 2.5.10" ,
103103 "@types/q" : " 1.5.4" ,
104104 "@types/remote-origin-url" : " 2.0.0" ,
105105 "@types/rimraf" : " 2.0.4" ,
Original file line number Diff line number Diff line change @@ -5,7 +5,12 @@ BRANCH_NAME=${BRANCH_NAME:-${TRAVIS_BRANCH}}
55BRANCH_NAME=${BRANCH_NAME:- ${BUDDYBUILD_BRANCH} }
66BRANCH_NAME=${BRANCH_NAME:- ${CIRCLE_BRANCH} }
77BRANCH_NAME=${BRANCH_NAME:- ${GIT_BRANCH} }
8- COMMIT_MESSAGE=$( git log -1 HEAD --pretty=format:%s) && echo " ===== Building $COMMIT_MESSAGE on ${BRANCH_NAME} ====="
8+ COMMIT_MESSAGE=$( git log -1 HEAD --pretty=format:%s) && echo "
9+ =====
10+ Building
11+ $COMMIT_MESSAGE
12+ on branch: ${BRANCH_NAME}
13+ ====="
914set -x
1015
1116bundle install
@@ -30,4 +35,4 @@ cordova plugin rm cordova-plugin-mauron85-background-geolocation --save
3035cordova plugin rm phonegap-plugin-push --save # Need to update to Firebase
3136
3237cordova platform rm ios
33- cordova platform add
[email protected] 38+ cordova platform add
[email protected]
Original file line number Diff line number Diff line change @@ -4432,7 +4432,7 @@ var qm = {
44324432 outputCommitMessageAndBranch: function(){
44334433 qm.gitHelper.getCommitMessage(function(commitMessage){
44344434 qm.gitHelper.setBranchName(function(branchName){
4435- qmLog.info("===== Building " + commitMessage + " on " + branchName + " =====");
4435+ qmLog.info("===== \nBuilding \n " + commitMessage + "\non branch: " + branchName + "\n =====");
44364436 });
44374437 });
44384438 },
You can’t perform that action at this time.
0 commit comments