diff options
| author | Philipp Tanlak <philipp.tanlak@gmail.com> | 2024-11-24 23:36:26 +0100 |
|---|---|---|
| committer | Philipp Tanlak <philipp.tanlak@gmail.com> | 2024-11-24 23:36:26 +0100 |
| commit | 63e8d0d24e3d5307addf5f3c1448d69edf3974b9 (patch) | |
| tree | 49da8ae6e041afda88b6bf17eacddebf6902eddc /install.sh | |
| parent | 175cb0700b86134d3b04eab23d100dce2c3b6d56 (diff) | |
Bump version in install scriptv0.9.0
Diffstat (limited to 'install.sh')
| -rwxr-xr-x | install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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" |