Skip to content

Commit 264fdea

Browse files
authored
Merge branch 'develop' into feature/validateVariables
2 parents 0c04503 + 41b5d99 commit 264fdea

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

modules/qmGit.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;}

modules/qmLog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
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",

scripts/ios_install_dependencies.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ BRANCH_NAME=${BRANCH_NAME:-${TRAVIS_BRANCH}}
55
BRANCH_NAME=${BRANCH_NAME:-${BUDDYBUILD_BRANCH}}
66
BRANCH_NAME=${BRANCH_NAME:-${CIRCLE_BRANCH}}
77
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+
====="
914
set -x
1015

1116
bundle install
@@ -30,4 +35,4 @@ cordova plugin rm cordova-plugin-mauron85-background-geolocation --save
3035
cordova plugin rm phonegap-plugin-push --save # Need to update to Firebase
3136

3237
cordova platform rm ios
33-
cordova platform add [email protected]
38+
cordova platform add [email protected]

src/js/qmHelpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

0 commit comments

Comments
 (0)