mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix(compile): add aarch64 linux to CliOptions::npm_system_info
(#22567)
Follow-up for #22542.
This commit is contained in:
parent
5193834cf2
commit
bcf2156dbf
1 changed files with 4 additions and 0 deletions
|
@ -843,6 +843,10 @@ impl CliOptions {
|
|||
os: "darwin".to_string(),
|
||||
cpu: "arm64".to_string(),
|
||||
},
|
||||
"aarch64-unknown-linux-gnu" => NpmSystemInfo {
|
||||
os: "linux".to_string(),
|
||||
cpu: "arm64".to_string(),
|
||||
},
|
||||
"x86_64-apple-darwin" => NpmSystemInfo {
|
||||
os: "darwin".to_string(),
|
||||
cpu: "x64".to_string(),
|
||||
|
|
Loading…
Reference in a new issue