From 4257a4dfdd6b9f132be8b988926f36e1176f7b44 Mon Sep 17 00:00:00 2001 From: Roxanne Skelly Date: Thu, 27 Sep 2018 23:12:24 -0700 Subject: [PATCH] Try fixing binary name for 'running process' detection of interface --- server-console/src/modules/hf-app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server-console/src/modules/hf-app.js b/server-console/src/modules/hf-app.js index d7c54d3e4d..3c9505abdd 100644 --- a/server-console/src/modules/hf-app.js +++ b/server-console/src/modules/hf-app.js @@ -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); }