Skip to content

Commit

Permalink
[Fix] install-latest-npm: io.js v1.0.0 has weird behavior with …
Browse files Browse the repository at this point in the history
…npm v4.6.x.
  • Loading branch information
ljharb committed Sep 5, 2017
1 parent 6f19bab commit e3d1519
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ nvm_install_latest_npm() {

if [ $NVM_IS_0_9 -eq 1 ] || [ $NVM_IS_0_6 -eq 1 ]; then
nvm_echo '* node v0.6 and v0.9 are unable to upgrade further'
elif nvm_version_greater 1.0.0 "${NODE_VERSION}"; then
nvm_echo '* `npm` v4.5.x is the last version that works on `node` versions below v1.0.0'
elif nvm_version_greater_than_or_equal_to 1.0.0 "${NODE_VERSION}"; then
nvm_echo '* `npm` v4.5.x is the last version that works on `node` versions <= v1.0.0'
$NVM_NPM_CMD install -g [email protected]
elif nvm_version_greater 4.0.0 "${NODE_VERSION}"; then
nvm_echo '* `npm` v5 and higher do not work on `node` versions below v4.0.0'
Expand Down

0 comments on commit e3d1519

Please sign in to comment.