1
0
Fork 0
mirror of https://code.sup39.dev/repos/Wqawg synced 2024-12-27 01:14:51 +09:00
vervis/update-deps.sh
fr33domlover e853bed5a8 update-deps.sh: Fix link to dependency repos
6543, thanks for noticing & reporting the bug
2022-09-24 21:22:14 +00:00

29 lines
550 B
Bash

#!/bin/sh
VERVIS='https://vervis.peers.community/s/fr33domlover/r'
DEPS='dvara
hit-graph
hit-harder
hit-network
darcs-lights
darcs-rev
http-client-signature
http-signature
ssh
persistent-graph
persistent-migration
persistent-email-address
time-interval-aeson
yesod-http-signature
yesod-mail-send'
mkdir -p lib
cd lib
for dep in $DEPS; do
if [ -d "$dep" ]; then
darcs pull --repodir="$dep" --all
else
darcs clone "$VERVIS/$dep"
fi
done