Skip to content

Commit

Permalink
Use stricter platform check
Browse files Browse the repository at this point in the history
  • Loading branch information
jlord committed Dec 16, 2015
1 parent 803db72 commit 3f26258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let mainWindow;
app.on('window-all-closed', function () {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform != 'darwin') {
if (process.platform !== 'darwin') {
app.quit();
}
});
Expand Down

0 comments on commit 3f26258

Please sign in to comment.