From e39bb33d7799959aff065301351ec9c019331b7a Mon Sep 17 00:00:00 2001 From: filip mertens Date: Fri, 1 Mar 2024 11:12:34 +0100 Subject: [PATCH] see result --- apps/remixdesktop/notarize.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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