Merge pull request #2219 from matt-hickford/build-windows-alternative

build on Windows - fix spawn command by calling node explicitly
This commit is contained in:
Jeremy Ashkenas
2012-04-24 14:59:30 -07:00

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