mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
fixing coffee -s ... (jannehietamaki)
This commit is contained in:
parent
3af34d61d3
commit
eb3a32e853
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ compileStdio = ->
|
||||||
stdin.on 'data', (buffer) ->
|
stdin.on 'data', (buffer) ->
|
||||||
code += buffer.toString() if buffer
|
code += buffer.toString() if buffer
|
||||||
stdin.on 'end', ->
|
stdin.on 'end', ->
|
||||||
compileScript 'stdio', code
|
compileScript null, code
|
||||||
|
|
||||||
# Watch a source CoffeeScript file using `fs.watchFile`, recompiling it every
|
# Watch a source CoffeeScript file using `fs.watchFile`, recompiling it every
|
||||||
# time the file is updated. May be used in combination with other options,
|
# time the file is updated. May be used in combination with other options,
|
||||||
|
|
Loading…
Reference in a new issue