We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On CoffeeScript compilation error, this script:
var exec = require('child_process').exec var command = "node assets/js/dev/node_modules/coffee-script/bin/coffee --compile --bare --output assets/js assets/js" exec(command, function(err, stdout, stderr) { console.log(arguments) })
Results in strange error.
{ '0': { [Error: Command failed: ] killed: false, code: 1, signal: null }, '1': '', '2': '' }
Only in Windows. Mocha has a same problem. Stylus works. I don't know why and how to fix it.
The text was updated successfully, but these errors were encountered:
It seems that it's related to process.exit(1);
Sorry, something went wrong.
CoffeeScript is exiting with a non-zero exit code when an error occurs. Would you like this behavior to be changed in some way?
It's related to this issue: nodejs/node-v0.x-archive#3584 Let's wait for Node 0.9.
No branches or pull requests
On CoffeeScript compilation error, this script:
Results in strange error.
Only in Windows. Mocha has a same problem. Stylus works. I don't know why and how to fix it.
The text was updated successfully, but these errors were encountered: