Merge branch 'sysTraySetup' of https://github.com/roxanneskelly/hifi into sysTraySetup

This commit is contained in:
Roxanne Skelly 2018-09-28 09:24:52 -07:00
commit 2f1f1d896c

View file

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