Skip to content

Commit

Permalink
fix issue554
Browse files Browse the repository at this point in the history
  • Loading branch information
Omega-Ariston committed Feb 19, 2020
1 parent 8fc5b92 commit aad6dd6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cakefile
@@ -1,7 +1,8 @@
{spawn, exec} = require 'child_process'

task 'build', 'continually build the JavaScript code', ->
coffee = spawn 'coffee', ['-cw', '-o', 'lib', 'src']
coffeeScript = if process.platform == 'win32' then 'coffee.cmd' else 'coffee'
coffee = spawn coffeeScript, ['-cw', '-o', 'lib', 'src']
coffee.stdout.on 'data', (data) -> console.log data.toString().trim()

task 'doc', 'rebuild the Docco documentation', ->
Expand Down

0 comments on commit aad6dd6

Please sign in to comment.