Fixed downloading arm64 binaries (#2021)

## Changes
Fixed downloading arm64 binaries

Go 1.23 changed the way built binaries are prefixed on amd64, more
details here: https://tip.golang.org/doc/go1.23#arm64
This commit is contained in:
Andrew Nester 2024-12-16 17:34:22 +01:00 committed by GitHub
parent b6f299974f
commit e60fe1bff2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ function cli_snapshot_directory() {
dir="${dir}_386"
;;
arm64|aarch64)
dir="${dir}_arm64"
dir="${dir}_arm64_v8.0"
;;
armv7l|armv8l)
dir="${dir}_arm_6"