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
This commit is contained in:
Jason Antwi-Appah 2021-11-03 06:14:53 -05:00 committed by GitHub
parent 0a64c4eb5c
commit b1b1a1b725
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,12 @@ function getNotionResources() {
let folder = ''; let folder = '';
switch (process.platform) { switch (process.platform) {
case 'darwin': 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; break;
case 'win32': case 'win32':
folder = process.env.LOCALAPPDATA + '\\Programs\\Notion\\resources'; folder = process.env.LOCALAPPDATA + '\\Programs\\Notion\\resources';