mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Merge branch 'sysTraySetup' of https://github.com/roxanneskelly/hifi into sysTraySetup
This commit is contained in:
commit
2f1f1d896c
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