Skip to content

Commit

Permalink
fix(install.sh): don't remove old npm first
Browse files Browse the repository at this point in the history
The install script will gracefully fail if things don't work.  This is
especially important for versions of npm that won't work in your current
node version.
  • Loading branch information
wraithgar committed Sep 13, 2021
1 parent ac8e4ad commit 3924859
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions scripts/install.sh
Expand Up @@ -162,8 +162,6 @@ cd "$TMP" \
&& curl -qSsL -o npm.tgz "$url" \
&& $tar -xzf npm.tgz \
&& cd "$TMP"/package \
&& echo "removing existing npm" \
&& "$node" bin/npm-cli.js rm npm -gf --loglevel=silent \
&& echo "installing npm@$t" \
&& "$node" bin/npm-cli.js install -gf ../npm.tgz \
&& cd "$BACK" \
Expand Down

0 comments on commit 3924859

Please sign in to comment.