mirror of
https://github.com/jkcoxson/idevice.git
synced 2026-03-02 06:26:15 +01:00
Make UUID an argument of trust subcommand in amfi
This commit is contained in:
@@ -19,8 +19,12 @@ pub fn register() -> JkCommand {
|
|||||||
"status",
|
"status",
|
||||||
JkCommand::new().help("Gets the developer mode status"),
|
JkCommand::new().help("Gets the developer mode status"),
|
||||||
)
|
)
|
||||||
.with_subcommand("trust", JkCommand::new().help("Trusts an app signer"))
|
.with_subcommand(
|
||||||
.with_argument(JkArgument::new().with_help("UUID").required(true))
|
"trust",
|
||||||
|
JkCommand::new()
|
||||||
|
.help("Trusts an app signer")
|
||||||
|
.with_argument(JkArgument::new().with_help("UUID").required(true)),
|
||||||
|
)
|
||||||
.subcommand_required(true)
|
.subcommand_required(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user