From 63e8d0d24e3d5307addf5f3c1448d69edf3974b9 Mon Sep 17 00:00:00 2001 From: Philipp Tanlak Date: Sun, 24 Nov 2024 23:36:26 +0100 Subject: Bump version in install script --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 36e9ca8..8d46d98 100755 --- a/install.sh +++ b/install.sh @@ -15,10 +15,10 @@ echo "Installing flyscrape" case $(uname -ms) in 'Darwin x86_64') - target=macos_amd64 + target=darwin_amd64 ;; 'Darwin arm64') - target=macos_arm64 + target=darwin_arm64 ;; 'Linux aarch64' | 'Linux arm64') target=linux_arm64 @@ -35,7 +35,7 @@ mkdir -p "$dir" || archive="$dir/flyscrape_$target.tar.gz" -url="https://github.com/philippta/flyscrape/releases/latest/download/flyscrape_$target.tar.gz" +url="https://github.com/philippta/flyscrape/releases/latest/download/flyscrape_0.9.0_$target.tar.gz" curl --fail --location --progress-bar --output "$archive" "$url" || error "Failed to download flyscrape from: $url" -- cgit v1.2.3