We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7da51e4 commit 316633bCopy full SHA for 316633b
.travis.yml
@@ -1,5 +1,10 @@
1
language: node_js
2
node_js:
3
- "stable"
4
+os:
5
+ osx
6
+jobs:
7
+ allow_failures:
8
+ - os: osx
9
install:
10
- npm install
Main.js
@@ -75,7 +75,7 @@ app.on('window-all-closed', () => {
75
{ encoding: 'UTF-8' }
76
);
77
// process platform is a property that return a string identifying the OS platform on which NodeJs process is running --> Ousman
78
- if (process.platform !== 'linux') {
+ if (process.platform !== 'darwin') {
79
// quits application
80
app.quit();
81
}
0 commit comments