Trying to run npm ... maybe the error message could help: > C:\Program Files\nodejs\npm.cmd install grunt-cli --save-dev Cannot run program "C:\Program" (in directory "C:\wamp\www\test"): CreateProcess error=2, The system cannot find the file specified
There is now a Command Line Tool Support plugin for IDEA 11.
I'm using idea64.exe and command line tools doesnt work as in idea.exe ... any suggestions ?
What's the difference? I've noticed none. Check Command Line Tool plugin in Settings | Plugins.
It is checked ... seems idea64 does not recognize cmd on windows ...
What exactly are you doing?
Trying to run npm ... maybe the error message could help:
> C:\Program Files\nodejs\npm.cmd install grunt-cli --save-dev
Cannot run program "C:\Program" (in directory "C:\wamp\www\test"): CreateProcess error=2, The system cannot find the file specified
Please try quoting:
"C:\Program Files\nodejs\npm.cmd" install grunt-cli --save-dev
If it's a part of some configured tool, qoute its Tool Path in Settings | Command Line Tool
Thanks! That solution worked for both 32 and 64 bit versions of idea.exe, but its not intuitive ... maybe a minor bug to correct :)