Skip to content
This repository has been archived by the owner on Feb 19, 2024. It is now read-only.

Commit

Permalink
fix(release): lets try this AGAIN
Browse files Browse the repository at this point in the history
  • Loading branch information
ostowe committed Jun 30, 2021
1 parent e7af8a3 commit f7f183e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bin/reconcile-release
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ inquirer
try {
execSync(`git merge ${releaseBranch}`).toString('utf8');
} catch (e) {
console.log(e);
if (e.message.includes('Automatic merge failed')) {
const message = e.stderr.toString('utf8');
console.log(message);
if (message.includes('Automatic merge failed')) {
console.log('HELLO I AM CONFLICTED');
}
}
Expand Down

0 comments on commit f7f183e

Please sign in to comment.