Skip to content
This repository has been archived by the owner on Mar 17, 2024. It is now read-only.

Commit

Permalink
Treat Apple's arm64 as aarch64
Browse files Browse the repository at this point in the history
With this, I get the error

```
rustup: command failed: downloader
https://static.rust-lang.org/rustup/dist/aarch64-apple-darwin/rustup-init
```

I believe that's where the binaries will be when they are published.
  • Loading branch information
shepmaster committed Oct 16, 2020
1 parent ad8f4bc commit 6fc5b54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rustup-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ get_architecture() {
fi
;;

aarch64)
aarch64 | arm64)
_cputype=aarch64
;;

Expand Down

0 comments on commit 6fc5b54

Please sign in to comment.