mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-07 04:53:28 +02:00
don't re-write exec name other than OS X
This commit is contained in:
parent
5f21b1f35c
commit
289156f473
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ exports.discoveredPath = function (name, binaryType, releaseType) {
|
|||
}
|
||||
|
||||
// for a released server console on OS X, assume the name of the interface executable is "High Fidelity"
|
||||
if (releaseType && name == "Interface") {
|
||||
if (releaseType && process.platform == "darwin" && name == "Interface") {
|
||||
name = "High Fidelity";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue