diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-07-05 01:13:27 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-07-05 01:13:27 +0200 |
commit | 660e9467851978016db6c39157315b832c94f8fd (patch) | |
tree | 4b5c3fabc5045fa15ab8be1bbb550d9d7ac91e81 | |
parent | ed6bd7fd5552afc5b8633b77ba13f04da2168a75 (diff) | |
download | zig-playground-660e9467851978016db6c39157315b832c94f8fd.tar.gz zig-playground-660e9467851978016db6c39157315b832c94f8fd.zip |
setup: automatically fetch latest zig
-rw-r--r-- | setup.fish | 23 |
1 files changed, 16 insertions, 7 deletions
@@ -1,11 +1,20 @@ -set -l BASE zig-linux-x86_64-0.14.0-dev.130+cb308ba3a +curl -s https://ziglang.org/download/index.json -o index.json +or exit 1 -echo "SETUP $BASE" +set DLLINK (cat index.json | jq -r '.master ."x86_64-linux" .tarball') +set SHASUM (cat index.json | jq -r '.master ."x86_64-linux" .shasum') -if ! test -d $BASE - wget --no-clobber https://ziglang.org/builds/$BASE.tar.xz - tar xf $BASE.tar.xz - rm -f $BASE.tar.xz +rm -f index.json + +set TARBALL (echo $DLLINK | awk -F '/' '{ print $NF }') +set ZIGDIR (echo $TARBALL | sed 's/.tar.xz//') + +if ! test -d $ZIGDIR + wget -q --show-progress --no-clobber $DLLINK + and shasum -a 256 -c (echo "$SHASUM $TARBALL" | psub) + and tar xf $TARBALL + or exit 2 end -fish_add_path --path (pwd)/$BASE +echo "SETUP $ZIGDIR" +fish_add_path --path (pwd)/$ZIGDIR |