don't re-write exec name other than OS X

This commit is contained in:
Stephen Birarda 2016-01-20 12:27:17 -08:00
parent 5f21b1f35c
commit 289156f473

View file

@ -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";
}