From a947f046016df2a0273b6a21b0f7b337905c54c0 Mon Sep 17 00:00:00 2001 From: evilsocket Date: Mon, 28 Oct 2024 16:06:35 +0100 Subject: [PATCH] fix --- src/cli/inspect.rs | 7 +++---- src/cli/mod.rs | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/cli/inspect.rs b/src/cli/inspect.rs index 0dfaa22..3b90517 100644 --- a/src/cli/inspect.rs +++ b/src/cli/inspect.rs @@ -3,8 +3,7 @@ use crate::core::FileType; use super::InspectArgs; pub(crate) fn inspect(args: InspectArgs) -> anyhow::Result<()> { - let quiet = args.quiet.unwrap_or(false); - if !quiet { + if !args.quiet { println!( "Inspecting {:?} (detail={:?}{}):\n", args.file_path, @@ -31,7 +30,7 @@ pub(crate) fn inspect(args: InspectArgs) -> anyhow::Result<()> { anyhow::bail!("unsupported file format") }; - if !quiet { + if !args.quiet { println!("file type: {}", inspection.file_type); println!("version: {}", inspection.version); println!( @@ -110,7 +109,7 @@ pub(crate) fn inspect(args: InspectArgs) -> anyhow::Result<()> { let json_str = serde_json::to_string_pretty(&inspection)?; std::fs::write(json_file_path, json_str)?; - if !quiet { + if !args.quiet { println!("\nsaved to {:?}", json_file_path); } } diff --git a/src/cli/mod.rs b/src/cli/mod.rs index ff1387d..57767e4 100644 --- a/src/cli/mod.rs +++ b/src/cli/mod.rs @@ -56,7 +56,7 @@ pub(crate) struct InspectArgs { filter: Option, /// Suppress inspection output. #[clap(long, short = 'Q')] - quiet: Option, + quiet: bool, /// Save as JSON to the specified file. #[clap(long, short = 'J')] to_json: Option,