Skip to content

Commit

Permalink
Add console.log to notarize.js
Browse files Browse the repository at this point in the history
Otherwise the output during a build would just say this:

> skipped macOS notarization  reason=`notarize` options were set explicitly `false`

which could give the wrong impression that notarization was not done at all.
  • Loading branch information
ravicious committed Dec 4, 2024
1 parent d28a378 commit c6c579f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions web/packages/teleterm/notarize.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ exports.default = async function notarizing(context) {
const appName = context.packager.appInfo.productFilename;
const appBundleId = context.packager.appInfo.macBundleIdentifier;

console.log('notarize.js: Notarizing in progress.');

return await notarize({
appBundleId,
appPath: `${appOutDir}/${appName}.app`,
Expand Down

0 comments on commit c6c579f

Please sign in to comment.