[Paths] Tweak resources path, set var instead of making each func

pull/2/head
Oj 2 years ago
parent 1d2d00ab25
commit a29564c42d

@ -12,12 +12,12 @@ const exeDir = dirname(app.getPath('exe'));
const installPath = /^app-[0-9]+\.[0-9]+\.[0-9]+/.test(basename(exeDir)) ? join(exeDir, '..') : null;
const moduleData = buildInfo.newUpdater ? join(userData, 'module_data') : join(userDataVersioned, 'modules');
const resourcesPath = join(process.resourcesPath, '..'); // Discord uses path and require.main.filename here because ??
exports.getUserData = () => userData;
exports.getUserDataVersioned = () => userDataVersioned;
exports.getResources = () => process.resourcesPath; // Discord uses path and require.main.filename here because ??
exports.getResources = () => resourcesPath;
exports.getModuleDataPath = () => moduleData;
exports.getInstallPath = () => installPath;

Loading…
Cancel
Save