We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tauri info
1 parent 72597a7 commit 3a4972bCopy full SHA for 3a4972b
.changes/cli-info-include-arch.md
@@ -0,0 +1,6 @@
1
+---
2
+"tauri-cli": patch:enhance
3
+"@tauri-apps/cli": patch:enhance
4
5
+
6
+Include architecture in the `tauri info` output.
tooling/cli/src/info/env_system.rs
@@ -181,9 +181,10 @@ pub fn items() -> Vec<SectionItem> {
181
SectionItem::new().action(|| {
182
let os_info = os_info::get();
183
format!(
184
- "OS: {} {} {:?}",
+ "OS: {} {} {} ({:?})",
185
os_info.os_type(),
186
os_info.version(),
187
+ os_info.architecture().unwrap_or("Unknown Architecture"),
188
os_info.bitness()
189
).into()
190
}),
0 commit comments