From ee2e797224e9b6e6013c96a0fdf68ed871e95835 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Sat, 28 Feb 2015 15:59:29 -0500 Subject: Revert "remove clone script" This reverts commit b1f86b0338fd8a5d4289adb6f489695410397aed. --- bin/clone.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 bin/clone.sh (limited to 'bin') 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 -- cgit v1.2.3