diff --git a/tools/coffee/coffee.wsf b/tools/coffee/coffee.wsf index c8909f7b..25d590c9 100644 --- a/tools/coffee/coffee.wsf +++ b/tools/coffee/coffee.wsf @@ -42,7 +42,7 @@ function convert(input, output) { } var coffee; - if (!input) { + if (!input) { // Read all input data from STDIN var chunks = []; while (!WScript.StdIn.AtEndOfStream) @@ -62,8 +62,7 @@ function convert(input, output) { return new f; } - var js = CoffeeScript.compile(coffee); - + var js = CoffeeScript.compile(coffee, {filename: "temp.coffee"}); if (!output) { WScript.StdOut.Write(js); }