From b1b1a1b725b6d2c3f3f9d2f33878d0963d41ede2 Mon Sep 17 00:00:00 2001 From: Jason Antwi-Appah Date: Wed, 3 Nov 2021 06:14:53 -0500 Subject: [PATCH] Add support for user-only Notion installs on macOS (#375) * feat(macOS): add support for user-only Notion installs * feat(macOS): add support for user-only Notion installs * fixing an accidental change --- pkg/helpers.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkg/helpers.js b/pkg/helpers.js index 03133b7..09f635f 100644 --- a/pkg/helpers.js +++ b/pkg/helpers.js @@ -57,7 +57,12 @@ function getNotionResources() { let folder = ''; switch (process.platform) { case 'darwin': - folder = '/Applications/Notion.app/Contents/Resources'; + for (let loc of [ + `/Users/${process.env.USER}/Applications/Notion.app/Contents/Resources`, // Notion is installed only for the current user + '/Applications/Notion.app/Contents/Resources' // Notion is installed globally + ]) { + if (fs.pathExistsSync(loc)) folder = loc; + } break; case 'win32': folder = process.env.LOCALAPPDATA + '\\Programs\\Notion\\resources';