Warn when exiting due to single-instance
This lost me a fair bit of time trying to figure out why Riot was starting and then immediately quitting.
This commit is contained in:
parent
4dd6ee681d
commit
e24ef2bb5c
|
@ -171,6 +171,7 @@ const shouldQuit = electron.app.makeSingleInstance((commandLine, workingDirector
|
||||||
});
|
});
|
||||||
|
|
||||||
if (shouldQuit) {
|
if (shouldQuit) {
|
||||||
|
console.log("Other instance detected: exiting");
|
||||||
electron.app.quit()
|
electron.app.quit()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue