mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
chore: improve not implemented npm system info message (#22571)
This commit is contained in:
parent
22cd8ebf1f
commit
33fa49a100
1 changed files with 7 additions and 1 deletions
|
@ -860,7 +860,13 @@ impl CliOptions {
|
|||
cpu: "x64".to_string(),
|
||||
},
|
||||
value => {
|
||||
log::warn!("Not implemented NPM system info for target '{value}'. Using current system default. This may impact NPM ");
|
||||
log::warn!(
|
||||
concat!(
|
||||
"Not implemented npm system info for target '{}'. Using current ",
|
||||
"system default. This may impact architecture specific dependencies."
|
||||
),
|
||||
value,
|
||||
);
|
||||
NpmSystemInfo::default()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue