| ... | @@ -24,9 +24,9 @@ export SRC_BYTESIZE=$(wc -c < $SRC_TARBALL) | ... | @@ -24,9 +24,9 @@ export SRC_BYTESIZE=$(wc -c < $SRC_TARBALL) |
| 24 | | 24 | |
| 25 | # the freebsd build has to be there too | 25 | # the freebsd build has to be there too |
| 26 | FREEBSD_JSON=$(curl --fail "https://ziglang.org/builds/freebsd-$VERSION.json" || exit 1) | 26 | FREEBSD_JSON=$(curl --fail "https://ziglang.org/builds/freebsd-$VERSION.json" || exit 1) |
| 27 | export FREEBSD_TARBALL=$(echo "$FREEBSD_JSON" | jq .tarball -r) | 27 | export FREEBSD_TARBALL="$(echo "$FREEBSD_JSON" | jq .tarball -r)" |
| 28 | export FREEBSD_BYTESIZE=$(echo "$FREEBSD_JSON" | jq .size -r) | 28 | export FREEBSD_BYTESIZE="$(echo "$FREEBSD_JSON" | jq .size -r)" |
| 29 | export FREEBSD_SHASUM=$(echo "$FREEBSD_JSON" | jq .shasum -r) | 29 | export FREEBSD_SHASUM="$(echo "$FREEBSD_JSON" | jq .shasum -r)" |
| 30 | | 30 | |
| 31 | git clone https://github.com/ziglang/www.ziglang.org --depth 1 | 31 | git clone https://github.com/ziglang/www.ziglang.org --depth 1 |
| 32 | cd www.ziglang.org | 32 | cd www.ziglang.org |