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
To get exec to work on windows, something special needs to be done. Not sure what it is. Also need to update current tests.
The text was updated successfully, but these errors were encountered:
Hey, do you mean these errors?
This is the closest explanation I could find: requirejs/r.js#369 (comment)
Exec tries to run index.js with Windows Script Host.
index.js
Sorry, something went wrong.
Above thing can be fixed by adding node to exec commands.
node
child.exec('node ' + __dirname + '/../index.js --tasks --cwd ./test', function(err, stdout) {
After that there's issues with line endings and stdout truncating.
Some projects, for example grunt, use node-exit to fix stdout problem. I'll have to dig further to see what actually needs that fix.
Fixed by #4
No branches or pull requests
To get exec to work on windows, something special needs to be done. Not sure what it is. Also need to update current tests.
The text was updated successfully, but these errors were encountered: