From c251267c02d32c16008a2628e7e94b517588f34e Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 20 Jan 2016 09:33:01 -0800 Subject: [PATCH] look for correct name on OS X --- server-console/src/modules/path-finder.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server-console/src/modules/path-finder.js b/server-console/src/modules/path-finder.js index da8016eb7c..8c10aefca0 100644 --- a/server-console/src/modules/path-finder.js +++ b/server-console/src/modules/path-finder.js @@ -35,6 +35,11 @@ exports.searchPaths = function(name, binaryType) { // assume we're inside an app bundle on OS X if (process.platform == "darwin") { + // this is a production build - on OS X Interface will be called High Fidelity + if (name == "Interface") { + name = "High Fidelity"; + } + var contentPath = ".app/Contents/"; var contentEndIndex = __dirname.indexOf(contentPath);