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

clone.sh « bin - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b7229b5caff2288a6327fafc1ccdbe756b51575 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh

if [ "$#" -ne 1 ] || ! [ -d "$1" ]; then
  echo "Usage: $0 DIRECTORY_TO_CLONE_INTO" >&2
  exit 1
fi

pushd $1
git clone git@github.com:feross/addr-to-ip-port.git
git clone git@github.com:feross/bittorrent-dht.git
git clone git@github.com:fisch0920/bittorrent-peerid.git
git clone git@github.com:feross/bittorrent-protocol.git
git clone git@github.com:feross/bittorrent-swarm.git
git clone git@github.com:feross/bittorrent-tracker.git
git clone git@github.com:feross/create-torrent.git
git clone git@github.com:feross/load-ip-set.git
git clone git@github.com:feross/magnet-uri.git
git clone git@github.com:feross/parse-torrent.git
git clone git@github.com:feross/simple-peer.git
git clone git@github.com:feross/simple-websocket.git
git clone git@github.com:feross/string2compact.git
git clone git@github.com:feross/torrent-discovery.git
git clone git@github.com:feross/ut_metadata.git
git clone git@github.com:feross/ut_pex.git
git clone git@github.com:feross/webtorrent-swarm.git
git clone git@github.com:feross/webtorrent-tracker.git
popd
./node_modules/.bin/zelda $1