From aee1e00f9b542a3ae1bbfbfcd4ebfd700b876788 Mon Sep 17 00:00:00 2001 From: filip mertens Date: Sun, 10 Mar 2024 10:13:45 +0100 Subject: [PATCH] log more --- apps/remixdesktop/aftersign.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/remixdesktop/aftersign.js b/apps/remixdesktop/aftersign.js index 08e00694b3..f2faf582bc 100644 --- a/apps/remixdesktop/aftersign.js +++ b/apps/remixdesktop/aftersign.js @@ -25,6 +25,7 @@ exports.default = async function notarizing(context) { reject(new Error(`Stderr: ${stderr}`)); return; } + console.log(`stdout: ${stdout}`); resolve(stdout); }); }); @@ -34,6 +35,7 @@ exports.default = async function notarizing(context) { // Async function to check the stapling status async function checkStapleStatus(appPath) { try { + console.log(`xcrun stapler validate "${appPath}"`) await execShellCommand(`xcrun stapler validate "${appPath}"`); console.log('App is already stapled. No action needed.'); return true @@ -68,7 +70,7 @@ exports.default = async function notarizing(context) { console.log(r) // Stapling the app - console.log('STAPLING') + console.log('STAPLING', `xcrun stapler staple "${appPath}"`) await execShellCommand(`xcrun stapler staple "${appPath}"`)