Fixing classpath argument for Unix-like systems (macOS, Linux).
Game should now launch on these two systems.
This commit is contained in:
parent
be39d60705
commit
2f899822b5
@ -113,7 +113,7 @@ class ProcessBuilder {
|
|||||||
'-Xms' + ConfigManager.getMinRAM(),,
|
'-Xms' + ConfigManager.getMinRAM(),,
|
||||||
'-Djava.library.path=' + tempNativePath,
|
'-Djava.library.path=' + tempNativePath,
|
||||||
'-cp',
|
'-cp',
|
||||||
this.classpathArg(mods, tempNativePath).join(';'),
|
this.classpathArg(mods, tempNativePath).join(process.platform === 'win32' ? ';' : ':'),
|
||||||
this.forgeData.mainClass]
|
this.forgeData.mainClass]
|
||||||
|
|
||||||
// For some reason this will add an undefined value unless
|
// For some reason this will add an undefined value unless
|
||||||
|
Loading…
Reference in New Issue
Block a user