Answers for "node nvm update"

2

update npm with nvm

nvm install-latest-npm
Posted by: Guest on January-13-2021
0

nvm update

#!/bin/sh

set -e

cd ~/.nvm

git fetch --tags
TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
echo "Checking out tag $TAG..."
git checkout "$TAG"

source ~/.nvm/nvm.sh
Posted by: Guest on December-29-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language