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
Why its given gruntCliDir + to spawn at spawn( gruntCliDir + gruntCmd, args, {cwd: cwd} );
gruntCliDir +
spawn( gruntCliDir + gruntCmd, args, {cwd: cwd} );
On providing a base its trying to execute /grunt which gives error , on removing gruntCliDir + its working fine
The text was updated successfully, but these errors were encountered:
Agreed, the base is set elsewhere (grunt.file.setBase(cwd);) so there doesn't seem to be a reason to prepend the path here?
grunt.file.setBase(cwd);
Sorry, something went wrong.
👍
Error: spawn C:\Users\blabla/grunt.cmd ENOENT
No branches or pull requests
Why its given
gruntCliDir +
to spawn atspawn( gruntCliDir + gruntCmd, args, {cwd: cwd} );
On providing a base its trying to execute /grunt which gives error , on removing
gruntCliDir +
its working fineThe text was updated successfully, but these errors were encountered: