Skip to content

Commit

Permalink
Merge branch 'develop' into feature/validateVariables
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepsinn authored Jul 5, 2021
2 parents 0c04503 + 41b5d99 commit 264fdea
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ var qmGit = {
outputCommitMessageAndBranch: function () {
qmGit.getCommitMessage(function (commitMessage) {
qmGit.setBranchName(function () {
qmLog.info("===== Building " + commitMessage + " on "+ qmGit.getBranchName() + " =====");
qmLog.info("=====\nBuilding\n" + commitMessage + "\non branch: "+ qmGit.getBranchName() + "\n=====");
});
});
},
Expand Down
4 changes: 2 additions & 2 deletions modules/qmGit.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ var qmGit = {
outputCommitMessageAndBranch: function () {
qmGit.getCommitMessage(function (commitMessage) {
qmGit.setBranchName(function (branchName) {
qmLog.info("===== Building " + commitMessage + " on "+ branchName + " =====");
qmLog.info("=====\nBuilding\n" + commitMessage + "\non branch: "+ branchName + "\n=====");
})
})
},
Expand Down Expand Up @@ -134,4 +134,4 @@ var qmGit = {
return options;
}
};
if(typeof window !== "undefined"){ window.qmGit = qmGit;} else {module.exports = qmGit;}
if(typeof window !== "undefined"){ window.qmGit = qmGit;} else {module.exports = qmGit;}
2 changes: 1 addition & 1 deletion modules/qmLog.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ var qmLog = {
outputCommitMessageAndBranch: function () {
qmLog.qmGit.getCommitMessage(function (commitMessage) {
qmLog.qmGit.setBranchName(function (branchName) {
qmLog.info("===== Building " + commitMessage + " on "+ branchName + " =====");
qmLog.info("=====\nBuilding\n" + commitMessage + "\non branch: "+ branchName + "\n=====");
})
})
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"@types/mime": "2.0.3",
"@types/mocha": "8.2.2",
"@types/node": "10.17.56",
"@types/node-fetch": "^2.5.10",
"@types/node-fetch": "2.5.10",
"@types/q": "1.5.4",
"@types/remote-origin-url": "2.0.0",
"@types/rimraf": "2.0.4",
Expand Down
9 changes: 7 additions & 2 deletions scripts/ios_install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ BRANCH_NAME=${BRANCH_NAME:-${TRAVIS_BRANCH}}
BRANCH_NAME=${BRANCH_NAME:-${BUDDYBUILD_BRANCH}}
BRANCH_NAME=${BRANCH_NAME:-${CIRCLE_BRANCH}}
BRANCH_NAME=${BRANCH_NAME:-${GIT_BRANCH}}
COMMIT_MESSAGE=$(git log -1 HEAD --pretty=format:%s) && echo "===== Building $COMMIT_MESSAGE on ${BRANCH_NAME} ====="
COMMIT_MESSAGE=$(git log -1 HEAD --pretty=format:%s) && echo "
=====
Building
$COMMIT_MESSAGE
on branch: ${BRANCH_NAME}
====="
set -x

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

cordova platform rm ios
cordova platform add [email protected]
cordova platform add [email protected]
2 changes: 1 addition & 1 deletion src/js/qmHelpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -4432,7 +4432,7 @@ var qm = {
outputCommitMessageAndBranch: function(){
qm.gitHelper.getCommitMessage(function(commitMessage){
qm.gitHelper.setBranchName(function(branchName){
qmLog.info("===== Building " + commitMessage + " on " + branchName + " =====");
qmLog.info("===== \nBuilding \n" + commitMessage + "\non branch: " + branchName + "\n=====");
});
});
},
Expand Down

1 comment on commit 264fdea

@mikepsinn
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

View recording of ionic_variables_spec.js
Cypress Dashboard or Build Log or S3

ionic_variables-ionic

BUILD LOG

Please sign in to comment.