We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0d71785 + aad6dd6 commit 198063cCopy full SHA for 198063c
Cakefile
@@ -1,7 +1,8 @@
1
{spawn, exec} = require 'child_process'
2
3
task 'build', 'continually build the JavaScript code', ->
4
- coffee = spawn 'coffee', ['-cw', '-o', 'lib', 'src']
+ coffeeScript = if process.platform == 'win32' then 'coffee.cmd' else 'coffee'
5
+ coffee = spawn coffeeScript, ['-cw', '-o', 'lib', 'src']
6
coffee.stdout.on 'data', (data) -> console.log data.toString().trim()
7
8
task 'doc', 'rebuild the Docco documentation', ->
0 commit comments