diff --git a/apps/remixdesktop/notarize.js b/apps/remixdesktop/notarize.js index e5fe0198c2..473c9b76fd 100644 --- a/apps/remixdesktop/notarize.js +++ b/apps/remixdesktop/notarize.js @@ -14,11 +14,13 @@ exports.default = async function notarizing(context) { console.log(appName); - await notarize({ + const r = await notarize({ appBundleId: 'org.ethereum.remix-ide', // Your app's bundle ID appPath: `${appOutDir}/${appName}.app`, // Path to your .app appleId: process.env.APPLE_ID, // Your Apple ID appleIdPassword: process.env.APPLE_ID_PASSWORD, // App-specific password teamId: process.env.APPLE_TEAM_ID, // Your Apple Developer team ID (optional) }); + + console.log(r); }; \ No newline at end of file