Closed abe545 closed 10 years ago
It seems this is because on Windows, npm is actually npm.cmd and child_process doesn't try to resolve .cmd files for execution. Like always, stackoverflow was able to show me why npm fails under Windows here.
npm
npm.cmd
child_process
.cmd
I fixed this issue in my pull request: https://github.com/Strider-CD/strider-node/pull/8
It seems this is because on Windows,
npm
is actuallynpm.cmd
andchild_process
doesn't try to resolve.cmd
files for execution. Like always, stackoverflow was able to show me why npm fails under Windows here.