mirror of
https://github.com/jkcoxson/idevice.git
synced 2026-03-02 14:36:16 +01:00
Add dir arg to crash_logs tool
This commit is contained in:
@@ -37,7 +37,11 @@ async fn main() {
|
|||||||
.help("Show about information")
|
.help("Show about information")
|
||||||
.action(clap::ArgAction::SetTrue),
|
.action(clap::ArgAction::SetTrue),
|
||||||
)
|
)
|
||||||
.subcommand(Command::new("list").about("Lists the items in the directory"))
|
.subcommand(
|
||||||
|
Command::new("list")
|
||||||
|
.about("Lists the items in the directory")
|
||||||
|
.arg(Arg::new("dir").required(false).index(1)),
|
||||||
|
)
|
||||||
.subcommand(Command::new("flush").about("Flushes reports to the directory"))
|
.subcommand(Command::new("flush").about("Flushes reports to the directory"))
|
||||||
.subcommand(
|
.subcommand(
|
||||||
Command::new("pull")
|
Command::new("pull")
|
||||||
|
|||||||
Reference in New Issue
Block a user