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

jake.rmRF silently failing on windows #242

Closed mde closed 10 years ago

mde commented 10 years ago

This works:

        try {           fs.unlinkSync(curr);         } catch(e) {           if (e.code === 'EPERM') {             fs.chmodSync(curr, '0666');             fs.unlinkSync(curr);           } else {             throw e;           }         }

mde commented 10 years ago

Fixed by https://github.com/mde/utilities/pull/15