mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-07 17:12:51 +02:00
More OSX Path fixes
This commit is contained in:
parent
4257a4dfdd
commit
fb3205a847
2 changed files with 2 additions and 2 deletions
|
@ -259,7 +259,7 @@ var debug = argv.debug;
|
|||
|
||||
var binaryType = argv.binaryType;
|
||||
|
||||
interfacePath = pathFinder.discoveredPath("Interface", binaryType, buildInfo.releaseType);
|
||||
interfacePath = pathFinder.discoveredPath("interface", binaryType, buildInfo.releaseType);
|
||||
dsPath = pathFinder.discoveredPath("domain-server", binaryType, buildInfo.releaseType);
|
||||
acPath = pathFinder.discoveredPath("assignment-client", binaryType, buildInfo.releaseType);
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ var path = require('path');
|
|||
const { app } = require('electron');
|
||||
|
||||
function platformExtension(name) {
|
||||
if (name == "Interface") {
|
||||
if (name == "interface") {
|
||||
if (process.platform == "darwin") {
|
||||
return ".app/Contents/MacOS/" + name
|
||||
} else if (process.platform == "win32") {
|
||||
|
|
Loading…
Reference in a new issue