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