mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
build on Windows - fix spawn command by calling node explicitly
This commit is contained in:
parent
ddd6e9a48b
commit
7e32c32057
1 changed files with 1 additions and 1 deletions
2
Cakefile
2
Cakefile
|
@ -34,7 +34,7 @@ sources = [
|
|||
|
||||
# Run a CoffeeScript through our node/coffee interpreter.
|
||||
run = (args, cb) ->
|
||||
proc = spawn 'bin/coffee', args
|
||||
proc = spawn 'node', ['bin/coffee'].concat(args)
|
||||
proc.stderr.on 'data', (buffer) -> console.log buffer.toString()
|
||||
proc.on 'exit', (status) ->
|
||||
process.exit(1) if status != 0
|
||||
|
|
Loading…
Reference in a new issue