summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/args/mod.rs8
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()
}
}