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

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2015-02-28 23:59:29 +0300
committerFeross Aboukhadijeh <feross@feross.org>2015-02-28 23:59:29 +0300
commitee2e797224e9b6e6013c96a0fdf68ed871e95835 (patch)
tree5dd757149fa5ade1387d74e581d4f04bac44f2d4 /bin
parent7b369f942cd6f7b01744d67d8d6d11213a5102ee (diff)
Revert "remove clone script"
This reverts commit b1f86b0338fd8a5d4289adb6f489695410397aed.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/clone.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/bin/clone.sh b/bin/clone.sh
new file mode 100755
index 0000000..7b7229b
--- /dev/null
+++ b/bin/clone.sh
@@ -0,0 +1,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