mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
look for correct name on OS X
This commit is contained in:
parent
fdeb00d4c2
commit
c251267c02
1 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue