ssh: Fix SSH to mac remotes (#20838)
Restore ability to SSH to macOS arm remotes (`uname -m` on mac == `arm64`). Fix regression introduced in https://github.com/zed-industries/zed/pull/20618
This commit is contained in:
parent
889aac9c03
commit
8666ec95ba
1 changed files with 1 additions and 0 deletions
|
@ -1568,6 +1568,7 @@ impl SshRemoteConnection {
|
|||
// exclude armv5,6,7 as they are 32-bit.
|
||||
let arch = if arch.starts_with("armv8")
|
||||
|| arch.starts_with("armv9")
|
||||
|| arch.starts_with("arm64")
|
||||
|| arch.starts_with("aarch64")
|
||||
{
|
||||
"aarch64"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue