Skip to content

Commit

Permalink
Fix darwin resource directory setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Curtis Gray committed Mar 11, 2024
1 parent c55ba14 commit ebe25d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ux/tron/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const getBaseDir = () =>
if (process.platform === 'darwin')
{
tell(`App is packaged on ${process.platform}. Using Contents/Resources path`);
baseDir = path.resolve(path.dirname(path.join(__dirname, '..', 'Resources')));
baseDir = path.resolve(path.dirname(path.join(__dirname, '..', '..', 'Resources')));
}
}
return baseDir;
Expand Down

0 comments on commit ebe25d5

Please sign in to comment.