From 0d25aa455b14f7ad2d71c011c9fa6c566ea06ce6 Mon Sep 17 00:00:00 2001 From: "Jamil Lambert, PhD" Date: Fri, 19 Jun 2026 15:53:38 +0100 Subject: [PATCH] verify: fix help text quiet had ... after it. Remove them. --- verify/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/verify/src/main.rs b/verify/src/main.rs index e961ec31..58680b3a 100644 --- a/verify/src/main.rs +++ b/verify/src/main.rs @@ -41,13 +41,13 @@ fn main() -> Result<()> { arg!([version] "Verify specific version of Core (use \"all\" for all versions)") .required(true), arg!(-t --tests "Optionally check claimed status of tests").required(false), - arg!(-q --quiet ... "Run tests in quiet mode").required(false), + arg!(-q --quiet "Run tests in quiet mode").required(false), ]); - let matches = cmd.clone().get_matches(); + let matches = cmd.get_matches(); let version = matches.get_one::("version").unwrap(); let test_output = matches.get_one::("tests"); - let quiet = matches.get_one::("quiet") == Some(&1); + let quiet = matches.get_flag("quiet"); if version == "all" { verify_all_versions(test_output, quiet)?;