mirror of
https://github.com/dscalzi/HeliosLauncher.git
synced 2024-12-22 11:42:14 -08:00
Fix ForgeInstallerCLI path for cross-platform.
This commit is contained in:
parent
35c5b24bb6
commit
020eeefcae
@ -558,10 +558,11 @@ async function dlAsync(login = true) {
|
||||
if(isDev) {
|
||||
wrapperPath = join(process.cwd(), 'libraries', 'java', 'ForgeInstallerCLI.jar')
|
||||
} else {
|
||||
const exePath = remote.app.getPath('exe')
|
||||
if(process.platform === 'darwin'){
|
||||
wrapperPath = join(process.cwd(), 'Contents', 'Resources', 'libraries', 'java', 'ForgeInstallerCLI.jar')
|
||||
wrapperPath = join(exePath, '..', '..', 'Contents', 'Resources', 'libraries', 'java', 'ForgeInstallerCLI.jar')
|
||||
} else {
|
||||
wrapperPath = join(process.cwd(), 'resources', 'libraries', 'java', 'ForgeInstallerCLI.jar')
|
||||
wrapperPath = join(exePath, '..', 'resources', 'libraries', 'java', 'ForgeInstallerCLI.jar')
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user