diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-02-23 16:34:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-23 16:34:24 -0500 |
commit | 33fa49a100c3a8f33bbf30dbad8eb3ad3e43bef6 (patch) | |
tree | 8134a9f1fbb10f178697292b5e149ec92c5c5b75 /cli/args/mod.rs | |
parent | 22cd8ebf1f3ecee6bb7646d0e77762b51cf4bd90 (diff) |
chore: improve not implemented npm system info message (#22571)
Diffstat (limited to 'cli/args/mod.rs')
-rw-r--r-- | cli/args/mod.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cli/args/mod.rs b/cli/args/mod.rs index 7bfb6bc0e..c5044fe65 100644 --- a/cli/args/mod.rs +++ b/cli/args/mod.rs @@ -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() } } |