From 496e0991879434f4800b0ad7f2e896649ddb7685 Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Fri, 30 Jan 2026 08:56:07 -0700 Subject: [PATCH] Make UUID an argument of trust subcommand in amfi --- tools/src/amfi.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tools/src/amfi.rs b/tools/src/amfi.rs index 0298da1..432449e 100644 --- a/tools/src/amfi.rs +++ b/tools/src/amfi.rs @@ -19,8 +19,12 @@ pub fn register() -> JkCommand { "status", JkCommand::new().help("Gets the developer mode status"), ) - .with_subcommand("trust", JkCommand::new().help("Trusts an app signer")) - .with_argument(JkArgument::new().with_help("UUID").required(true)) + .with_subcommand( + "trust", + JkCommand::new() + .help("Trusts an app signer") + .with_argument(JkArgument::new().with_help("UUID").required(true)), + ) .subcommand_required(true) }