Skip to content

Commit

Permalink
Merge pull request #7 from theashraf/fix/broken-console
Browse files Browse the repository at this point in the history
fix: πŸ› broken console message
  • Loading branch information
arshadkazmi42 committed Nov 9, 2019
2 parents 10dc810 + 69b1ff5 commit 4e3d7b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fork.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const fork = async (currentPath) => {
try {
await upstreamCore(currentPath);
await commandExec(`cd ${currentPath} && git fetch upstream && git checkout master && git rebase upstream/master`);
console.log(logSymbols.success, '\nBranch synced.\n\nRun below command to update your forked repository\n\n/////// git push origin master ///////\n');
console.log(logSymbols.success, 'Branch synced.\n\nRun below command to update your forked repository\n\n/////// git push origin master ///////\n');
} catch (err) {
console.log(logSymbols.error, err.message || err);
}
Expand Down

0 comments on commit 4e3d7b2

Please sign in to comment.