blob: 9254cdc27709876c5fe9e3f483c06da21adc4fe8 (
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
29
30
31
|
#!/bin/bash
#
# Fetches release entity mentioned in verify.csv and cache them locally.
set -e -u
set -o pipefail
API="https://api.fatcat.wiki/v0"
CSV="verify.csv"
RELEASE_DIR="release"
for prog in curl jq; do
command -v $prog >/dev/null 2>&1 || {
echo >&2 "$prog required"
exit 1
}
done
# Just release ATM, but could extend to other types.
mkdir -p "$RELEASE_DIR"
for ident in $(awk -F, '{print $1"\n"$2}' "$CSV"); do
dst="release/$ident"
if [ -f "$dst" ]; then
echo >&2 "[cached] $dst"
continue
fi
tempfile=$(mktemp)
curl -sL --fail "$API/release/$ident" | jq --sort-keys . >"$tempfile" && mv "$tempfile" "$dst"
echo >&2 "[fetched] $dst"
done
|