More OSX Path fixes

This commit is contained in:
Roxanne Skelly 2018-09-28 10:02:03 -07:00
parent 4257a4dfdd
commit fb3205a847
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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") {