Remove --no-timeouts flag.

Not a valid flag, causes errors when trying to use debug modes.
This commit is contained in:
Tim Oxley 2014-11-25 14:54:36 +08:00
parent 76499bb26e
commit 20dc8b05c9

View File

@ -14,13 +14,11 @@ process.argv.slice(2).forEach(function(arg){
switch (flag) {
case "-d":
args.unshift("--debug");
args.push("--no-timeouts");
break;
case "debug":
case "--debug":
case "--debug-brk":
args.unshift(arg);
args.push("--no-timeouts");
break;
case "-gc":
case "--expose-gc":