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: f07517904ddb85fa120fdd900ed52652bf74dea5 (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 xz --strip 1 \
  && make \
  && cd .. \
  && rm -rf npm \
  && echo "It worked"