diff --git a/Cakefile b/Cakefile index a83ad760..5c9d56ab 100644 --- a/Cakefile +++ b/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