mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -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(),
|
os: "darwin".to_string(),
|
||||||
cpu: "arm64".to_string(),
|
cpu: "arm64".to_string(),
|
||||||
},
|
},
|
||||||
|
"aarch64-unknown-linux-gnu" => NpmSystemInfo {
|
||||||
|
os: "linux".to_string(),
|
||||||
|
cpu: "arm64".to_string(),
|
||||||
|
},
|
||||||
"x86_64-apple-darwin" => NpmSystemInfo {
|
"x86_64-apple-darwin" => NpmSystemInfo {
|
||||||
os: "darwin".to_string(),
|
os: "darwin".to_string(),
|
||||||
cpu: "x64".to_string(),
|
cpu: "x64".to_string(),
|
||||||
|
|
Loading…
Add table
Reference in a new issue