build on Windows - fix spawn command by calling node explicitly

This commit is contained in:
Matt Hickford 2012-03-25 11:17:46 +01:00
parent ddd6e9a48b
commit 7e32c32057
1 changed files with 1 additions and 1 deletions

View File

@ -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