Skip to content

Commit ea31b07

Browse files
fix(cli): inspect's description (#14789)
1 parent 7f7d9aa commit ea31b07

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@tauri-apps/cli": patch:bug
3+
"tauri-cli": patch:bug
4+
---
5+
6+
Fixed the command description for `tauri inspect`

crates/tauri-cli/src/inspect.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use clap::{Parser, Subcommand};
99
use crate::interface::{AppInterface, AppSettings, Interface};
1010

1111
#[derive(Debug, Parser)]
12-
#[clap(about = "Manage or create permissions for your app or plugin")]
12+
#[clap(about = "Inspect values used by Tauri")]
1313
pub struct Cli {
1414
#[clap(subcommand)]
1515
command: Commands,
@@ -40,8 +40,7 @@ fn wix_upgrade_code(tauri_dir: &Path) -> Result<()> {
4040
let upgrade_code = uuid::Uuid::new_v5(
4141
&uuid::Uuid::NAMESPACE_DNS,
4242
format!("{product_name}.exe.app.x64").as_bytes(),
43-
)
44-
.to_string();
43+
);
4544

4645
log::info!("Default WiX Upgrade Code, derived from {product_name}: {upgrade_code}");
4746
if let Some(code) = config

0 commit comments

Comments
 (0)