mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-01-31 00:35:19 +01:00
fix(cli): inspect's description (#14789)
This commit is contained in:
6
.changes/fix-inspect-description.md
Normal file
6
.changes/fix-inspect-description.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
"@tauri-apps/cli": patch:bug
|
||||
"tauri-cli": patch:bug
|
||||
---
|
||||
|
||||
Fixed the command description for `tauri inspect`
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user