desktop: fix output binary path

This commit is contained in:
Ammar Ahmed
2024-03-31 00:34:12 +05:00
committed by Abdullah Atta
parent 44a7f057ac
commit 17289f2df6

View File

@@ -64,7 +64,7 @@ if (args.run) {
if (process.platform === "win32") {
await exec(`.\\output\\win-unpacked\\Notesnook.exe`);
} else if (process.platform === "darwin") {
await exec(`./output/darwin-unpacked/Notesnook`);
await exec(`./output/mac/Notesnook.app/Contents/MacOS/Notesnook`);
} else {
await exec(`./output/linux-unpacked/Notesnook`);
}