diff --git a/.changes/fix-inspect-description.md b/.changes/fix-inspect-description.md new file mode 100644 index 000000000..df1c87db9 --- /dev/null +++ b/.changes/fix-inspect-description.md @@ -0,0 +1,6 @@ +--- +"@tauri-apps/cli": patch:bug +"tauri-cli": patch:bug +--- + +Fixed the command description for `tauri inspect` diff --git a/crates/tauri-cli/src/inspect.rs b/crates/tauri-cli/src/inspect.rs index a2bb3bfa1..de26dd984 100644 --- a/crates/tauri-cli/src/inspect.rs +++ b/crates/tauri-cli/src/inspect.rs @@ -9,7 +9,7 @@ use clap::{Parser, Subcommand}; use crate::interface::{AppInterface, AppSettings, Interface}; #[derive(Debug, Parser)] -#[clap(about = "Manage or create permissions for your app or plugin")] +#[clap(about = "Inspect values used by Tauri")] pub struct Cli { #[clap(subcommand)] command: Commands, @@ -40,8 +40,7 @@ fn wix_upgrade_code(tauri_dir: &Path) -> Result<()> { let upgrade_code = uuid::Uuid::new_v5( &uuid::Uuid::NAMESPACE_DNS, format!("{product_name}.exe.app.x64").as_bytes(), - ) - .to_string(); + ); log::info!("Default WiX Upgrade Code, derived from {product_name}: {upgrade_code}"); if let Some(code) = config