From f128f54ce70be1713806cd188e4aeab6b732a943 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 20 Aug 2014 03:56:38 -0400 Subject: [PATCH] feature(console) spawn processes on win --- lib/server/console.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/server/console.js b/lib/server/console.js index fdb1db18..f43065a9 100644 --- a/lib/server/console.js +++ b/lib/server/console.js @@ -168,7 +168,7 @@ Util.exec(callback, { stdout: command }, true); - } else if (WIN || firstChar === ' ' || isSymbol) + } else if (firstChar === ' ' || isSymbol) exec(command, options, funcExec); else setSpawn(command, options, callback);