mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 02:16:51 +02: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 buildInfo = exports.getBuildInfo();
|
||||||
const interfacePath = pathFinder.discoveredPath("Interface", binaryType, buildInfo.releaseType);
|
const interfacePath = pathFinder.discoveredPath("interface", binaryType, buildInfo.releaseType);
|
||||||
|
|
||||||
exports.startInterface = function(url) {
|
exports.startInterface = function(url) {
|
||||||
var argArray = [];
|
var argArray = [];
|
||||||
|
@ -70,7 +70,7 @@ exports.isInterfaceRunning = function(done) {
|
||||||
if (osType == 'Windows_NT') {
|
if (osType == 'Windows_NT') {
|
||||||
var pInterface = new Process('interface', 'interface.exe');
|
var pInterface = new Process('interface', 'interface.exe');
|
||||||
} else if (osType == 'Darwin') {
|
} else if (osType == 'Darwin') {
|
||||||
var pInterface = new Process('interface', 'Interface');
|
var pInterface = new Process('interface', 'interface');
|
||||||
}
|
}
|
||||||
return pInterface.isRunning(done);
|
return pInterface.isRunning(done);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue