Fix isProduction() detection
In the renderer process on OS X, config.IS_PRODUCTION was always true because process.execPath is to "Electron Helper", so the detection regex was being overly specific.
This commit is contained in:
@@ -69,7 +69,7 @@ function isProduction () {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
if (process.platform === 'darwin') {
|
if (process.platform === 'darwin') {
|
||||||
return !/\/Electron\.app\/Contents\/MacOS\/Electron$/.test(process.execPath)
|
return !/\/Electron\.app\//.test(process.execPath)
|
||||||
}
|
}
|
||||||
if (process.platform === 'win32') {
|
if (process.platform === 'win32') {
|
||||||
return !/\\electron\.exe$/.test(process.execPath)
|
return !/\\electron\.exe$/.test(process.execPath)
|
||||||
|
|||||||
Reference in New Issue
Block a user