You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
269 B
13 lines
269 B
8 years ago
|
#!/bin/sh
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
die () { echo "$@" ; exit 1; }
|
||
|
|
||
|
set +e # todo: fix
|
||
|
\. ../../nvm.sh
|
||
|
set -e
|
||
|
|
||
|
NVM_DEBUG=1 nvm install --latest-npm 4.2.2 \
|
||
|
| grep 'Attempting to upgrade to the latest working version of npm...' || die 'did not call through to nvm_install_latest_npm'
|