Welcome to mirror list, hosted at ThFree Co, Russian Federation.

install.sh « scripts - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8430ea861fcc64324bd8a83c00ef86558a3812aa (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

mkdir npm \
  && cd npm \
  && curl -L http://github.com/isaacs/npm/tarball/master | tar xzf - --strip-components=1 \
  && make \
  && cd .. \
  && rm -rf npm \
  && echo "It worked"