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
I couldn't get your plugin to work, normal grunt task finishes perfectly, but using the gradle wrapped commands, it didn't.
After digging in, I found that the plugin uses the following command:
/home/mark/.gradle/nodejs/node-v0.11.9-linux-x64/bin/node /home/mark/test/node_modules/grunt-cli/lib/cli.js build
Executing the command directly also finishes without any results. Anyway, changing the command to:
/home/mark/.gradle/nodejs/node-v0.11.9-linux-x64/bin/node /home/mark/test/node_modules/grunt-cli/bin/grunt build
did work.
Are you sure you should be using the cli.js? And not the build grunt application in the /bin folder?
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. It works perfectly on my machine (Mac OSX) using cli.js and tought that it would work similarly on linux.
It looks like bin/grunt is probably better and works on OSX too. Will fix this or could you make a pull request?
Thanks again!
Sorry, something went wrong.
ef9e75a
Fixed it. Did a last minute change before releasing 0.3. Should never have done that. It works now on both Linux and OSX. Will test windows on monday.
Thanks again for submitting the issue.
That was fast, great! Thank you
No branches or pull requests
I couldn't get your plugin to work, normal grunt task finishes perfectly, but using the gradle wrapped commands, it didn't.
After digging in, I found that the plugin uses the following command:
Executing the command directly also finishes without any results. Anyway, changing the command to:
did work.
Are you sure you should be using the cli.js? And not the build grunt application in the /bin folder?
The text was updated successfully, but these errors were encountered: