Skip to content

Commit 98d617f

Browse files
committed
address node v0.12 dep warning
1 parent 206f8e9 commit 98d617f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/_mimosa

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ process.argv.slice(2).forEach(function(arg){
2323
case '--expose-gc':
2424
args.unshift('--expose-gc');
2525
break;
26-
case '--nolazy':
26+
case '--nolazy':
2727
case '--gc-global':
2828
case '--harmony':
2929
case '--harmony-proxies':
@@ -39,7 +39,7 @@ process.argv.slice(2).forEach(function(arg){
3939
}
4040
});
4141

42-
var proc = spawn(process.argv[0], args, { customFds: [0,1,2] });
42+
var proc = spawn(process.argv[0], args, { stdio: 'inherit' });
4343
proc.on('exit', function (code, signal) {
4444
process.on('exit', function(){
4545
if (signal) {

0 commit comments

Comments
 (0)