jakejs / jake

JavaScript build tool, similar to Make or Rake. Built to work with Node.js.
http://jakejs.com
Apache License 2.0
1.97k stars 190 forks source link

Package task fails with too many files #305

Closed welearnednothing closed 8 years ago

welearnednothing commented 8 years ago

This happens because the compress commands called via exec are using verbose output which can then exceed the max size for the output buffer, resulting in a "Error: stdout maxBuffer exceeded." error. The output is never exposed anywhere, so there's no point in using verbose output for these commands.

mde commented 8 years ago

Thank you!