diff --git a/CHANGELOG.md b/CHANGELOG.md index 497b6b571..bd7eb92d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ### To be Released * feat(log-drains): add Logtail +* feat(install.sh): add arm64 to the list of installable architectures ([PR#930](https://github.com/Scalingo/cli/pull/930)) * chore(deps): replace `github.com/ScaleFT/sshkeys` with `golang.org/x/crypto/ssh` * fix(completion): fix zsh shebang reference diff --git a/dists/install.sh b/dists/install.sh index f2d2d9366..f1b102e18 100755 --- a/dists/install.sh +++ b/dists/install.sh @@ -60,6 +60,9 @@ main() { i686) arch=386 ;; + aarch64) + arch=arm64 + ;; esac while [ "$#" -gt "0" ]