Skip to content

Commit e7887fc

Browse files
committed
Handle errors in index.js.
1 parent 9c860da commit e7887fc

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

index.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
'use strict';
22
const os = require('os').platform();
3+
const loadE = moduleName => require(moduleName).on('error', () => {});
34

45
module.exports = (() => {
56
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');
910
}
1011

1112
return () => {};

linux.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ const sh = require('tag-shell');
44
module.exports = opts => {
55
return sh.async`notify-send -a ${opts.app} -i ${opts.icon}
66
${opts.title} ${opts.message}
7-
`.on('error', () => {});
7+
`;
88
};

macos/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ module.exports = opts => {
3434
MESSAGE: opts.message,
3535
};
3636

37-
return sh.async({env})`open -a ${appPath}`.on('error', () => {});
37+
return sh.async({env})`open -a ${appPath}`;
3838
};

windows/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ module.exports = opts => {
77
return sh.async`powershell -file ${notify}
88
-app ${opts.app} -icon ${opts.icon}
99
-title ${opts.title} -message ${opts.message}
10-
`.on('error', () => {});
10+
`;
1111
};

0 commit comments

Comments
 (0)