Skip to content

Commit e60fe1b

Browse files
authored
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
1 parent b6f2999 commit e60fe1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/bugbash/exec.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function cli_snapshot_directory() {
3131
dir="${dir}_386"
3232
;;
3333
arm64|aarch64)
34-
dir="${dir}_arm64"
34+
dir="${dir}_arm64_v8.0"
3535
;;
3636
armv7l|armv8l)
3737
dir="${dir}_arm_6"

0 commit comments

Comments
 (0)