From eb3a32e8538e40cd07e3f072415138738ceeb8fe Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Mon, 8 Nov 2010 21:58:13 -0500 Subject: [PATCH] fixing coffee -s ... (jannehietamaki) --- src/command.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.coffee b/src/command.coffee index aced312e..00c039e6 100644 --- a/src/command.coffee +++ b/src/command.coffee @@ -126,7 +126,7 @@ compileStdio = -> stdin.on 'data', (buffer) -> code += buffer.toString() if buffer stdin.on 'end', -> - compileScript 'stdio', code + compileScript null, code # Watch a source CoffeeScript file using `fs.watchFile`, recompiling it every # time the file is updated. May be used in combination with other options,