Skip to content

Commit

Permalink
fix: remove unnecessary newline in build.js logging
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Dec 10, 2024
1 parent 155d699 commit a2c8756
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ const main = async () => {
};

main().then((res) => {
console.log(JSON.stringify(res));
console.log(JSON.stringify(res))
console.log('Build & Notarize complete');

}).catch((e) => {
console.error(JSON.stringify(e))
throw new Error('Failed to build and notarize.');
Expand Down

0 comments on commit a2c8756

Please sign in to comment.