File tree 4 files changed +7
-6
lines changed
4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
const os = require ( 'os' ) . platform ( ) ;
3
+ const loadE = moduleName => require ( moduleName ) . on ( 'error' , ( ) => { } ) ;
3
4
4
5
module . exports = ( ( ) => {
5
6
switch ( os ) {
6
- case 'darwin' : return require ( './macos' ) ;
7
- case 'linux' : return require ( './linux' ) ;
8
- case 'win32' : return require ( './windows' ) ;
7
+ case 'darwin' : return loadE ( './macos' ) ;
8
+ case 'linux' : return loadE ( './linux' ) ;
9
+ case 'win32' : return loadE ( './windows' ) ;
9
10
}
10
11
11
12
return ( ) => { } ;
Original file line number Diff line number Diff line change @@ -4,5 +4,5 @@ const sh = require('tag-shell');
4
4
module . exports = opts => {
5
5
return sh . async `notify-send -a ${ opts . app } -i ${ opts . icon }
6
6
${ opts . title } ${ opts . message }
7
- ` . on ( 'error' , ( ) => { } ) ;
7
+ ` ;
8
8
} ;
Original file line number Diff line number Diff line change @@ -34,5 +34,5 @@ module.exports = opts => {
34
34
MESSAGE : opts . message ,
35
35
} ;
36
36
37
- return sh . async ( { env} ) `open -a ${ appPath } ` . on ( 'error' , ( ) => { } ) ;
37
+ return sh . async ( { env} ) `open -a ${ appPath } ` ;
38
38
} ;
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ module.exports = opts => {
7
7
return sh . async `powershell -file ${ notify }
8
8
-app ${ opts . app } -icon ${ opts . icon }
9
9
-title ${ opts . title } -message ${ opts . message }
10
- ` . on ( 'error' , ( ) => { } ) ;
10
+ ` ;
11
11
} ;
You can’t perform that action at this time.
0 commit comments