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 = {
314
314
outputCommitMessageAndBranch : function ( ) {
315
315
qmGit . getCommitMessage ( function ( commitMessage ) {
316
316
qmGit . setBranchName ( function ( ) {
317
- qmLog . info ( "===== Building " + commitMessage + " on " + qmGit . getBranchName ( ) + " =====" ) ;
317
+ qmLog . info ( "=====\nBuilding\n " + commitMessage + "\non branch: " + qmGit . getBranchName ( ) + "\n =====" ) ;
318
318
} ) ;
319
319
} ) ;
320
320
} ,
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ var qmGit = {
63
63
outputCommitMessageAndBranch : function ( ) {
64
64
qmGit . getCommitMessage ( function ( commitMessage ) {
65
65
qmGit . setBranchName ( function ( branchName ) {
66
- qmLog . info ( "===== Building " + commitMessage + " on " + branchName + " =====" ) ;
66
+ qmLog . info ( "=====\nBuilding\n " + commitMessage + "\non branch: " + branchName + "\n =====" ) ;
67
67
} )
68
68
} )
69
69
} ,
@@ -134,4 +134,4 @@ var qmGit = {
134
134
return options ;
135
135
}
136
136
} ;
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 = {
190
190
outputCommitMessageAndBranch : function ( ) {
191
191
qmLog . qmGit . getCommitMessage ( function ( commitMessage ) {
192
192
qmLog . qmGit . setBranchName ( function ( branchName ) {
193
- qmLog . info ( "===== Building " + commitMessage + " on " + branchName + " =====" ) ;
193
+ qmLog . info ( "=====\nBuilding\n " + commitMessage + "\non branch: " + branchName + "\n =====" ) ;
194
194
} )
195
195
} )
196
196
} ,
Original file line number Diff line number Diff line change 99
99
"@types/mime" : " 2.0.3" ,
100
100
"@types/mocha" : " 8.2.2" ,
101
101
"@types/node" : " 10.17.56" ,
102
- "@types/node-fetch" : " ^ 2.5.10" ,
102
+ "@types/node-fetch" : " 2.5.10" ,
103
103
"@types/q" : " 1.5.4" ,
104
104
"@types/remote-origin-url" : " 2.0.0" ,
105
105
"@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}}
5
5
BRANCH_NAME=${BRANCH_NAME:- ${BUDDYBUILD_BRANCH} }
6
6
BRANCH_NAME=${BRANCH_NAME:- ${CIRCLE_BRANCH} }
7
7
BRANCH_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
+ ====="
9
14
set -x
10
15
11
16
bundle install
@@ -30,4 +35,4 @@ cordova plugin rm cordova-plugin-mauron85-background-geolocation --save
30
35
cordova plugin rm phonegap-plugin-push --save # Need to update to Firebase
31
36
32
37
cordova 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 = {
4432
4432
outputCommitMessageAndBranch: function(){
4433
4433
qm.gitHelper.getCommitMessage(function(commitMessage){
4434
4434
qm.gitHelper.setBranchName(function(branchName){
4435
- qmLog.info("===== Building " + commitMessage + " on " + branchName + " =====");
4435
+ qmLog.info("===== \nBuilding \n " + commitMessage + "\non branch: " + branchName + "\n =====");
4436
4436
});
4437
4437
});
4438
4438
},
You can’t perform that action at this time.
0 commit comments