Bundled npm gets iojs sources from iojs site, but when I npm up -g, the new npm goes to nodejs site. This breaks the build system.
Now in more details.
The commit https://github.com/cjihrig/io.js/commit/cdbb640359d07d4243dd63fdeadb42da7b6c439e forces the bundled npm to get the sources from
vartarballUrl=tarPath ? tarPath : distUrl+'/v'+version+'/iojs-v'+version+'.tar.gz'
When I npm up -g, I now have the line:
vartarballUrl=tarPath ? tarPath : distUrl+'/v'+version+'/node-v'+version+'.tar.gz'
Then I try to install other modules and GYP build fails, because it wants node-v1.6.2.
Bundled npm gets iojs sources from iojs site, but when I
npm up -g, the new npm goes to nodejs site. This breaks the build system.Now in more details.
The commit https://github.com/cjihrig/io.js/commit/cdbb640359d07d4243dd63fdeadb42da7b6c439e forces the bundled npm to get the sources from
When I
npm up -g, I now have the line:Then I try to install other modules and GYP build fails, because it wants node-v1.6.2.