mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Try fixing binary name for 'running process' detection of interface
This commit is contained in:
parent
308deeaa8d
commit
4257a4dfdd
1 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ exports.getBuildInfo = function() {
|
|||
}
|
||||
|
||||
const buildInfo = exports.getBuildInfo();
|
||||
const interfacePath = pathFinder.discoveredPath("Interface", binaryType, buildInfo.releaseType);
|
||||
const interfacePath = pathFinder.discoveredPath("interface", binaryType, buildInfo.releaseType);
|
||||
|
||||
exports.startInterface = function(url) {
|
||||
var argArray = [];
|
||||
|
@ -70,7 +70,7 @@ exports.isInterfaceRunning = function(done) {
|
|||
if (osType == 'Windows_NT') {
|
||||
var pInterface = new Process('interface', 'interface.exe');
|
||||
} else if (osType == 'Darwin') {
|
||||
var pInterface = new Process('interface', 'Interface');
|
||||
var pInterface = new Process('interface', 'interface');
|
||||
}
|
||||
return pInterface.isRunning(done);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue