Skip to content

Commit

Permalink
style(git): Remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
Tallyb committed May 13, 2019
1 parent ac26fde commit 9956577
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/gitHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@ const getCurrentBranch = async function() {

const commitVersion = async function(version, production, files) {
let commitMessage = `chore(app): Version ${version} ${production ? ' production' : ''} `;
let res;
try {
res = await git.add(files);
console.log('RES', res);
await git.add(files);
await git.commit(commitMessage);
await git.addAnnotatedTag(version, 'v' + version);
await git.push('origin', 'master');
Expand Down

0 comments on commit 9956577

Please sign in to comment.