Skip to content

Commit

Permalink
Merge pull request jashkenas#2219 from matt-hickford/build-windows-al…
Browse files Browse the repository at this point in the history
…ternative

build on Windows - fix spawn command by calling node explicitly
  • Loading branch information
jashkenas committed Apr 24, 2012
2 parents 34be878 + 7e32c32 commit c3159e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cakefile
Expand Up @@ -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
Expand Down

0 comments on commit c3159e4

Please sign in to comment.