Skip to content

Commit d48763e

Browse files
author
Ilya Radchenko
committed
Unsilence 'n' work
Better to have more information then less, especially when something is going wrong.
1 parent 708162d commit d48763e

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

worker.js

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,8 @@ module.exports = {
9292
ret.env.N_PREFIX + '/bin'
9393
]);
9494

95-
ret.environment = {
96-
cmd: 'n ' + (config.fork === 'io.js' ? 'io ' : '') + config.runtime,
97-
silent: true
98-
};
99-
100-
ret.cleanup = {
101-
cmd: 'n prev',
102-
silent: true
103-
};
95+
ret.environment = 'n ' + (config.fork === 'io.js' ? 'io ' : '') + config.runtime;
96+
ret.cleanup = 'n prev';
10497
}
10598

10699
cb(null, ret);

0 commit comments

Comments
 (0)