diff --git a/tools/src/crash_logs.rs b/tools/src/crash_logs.rs index cda1535..69e79b2 100644 --- a/tools/src/crash_logs.rs +++ b/tools/src/crash_logs.rs @@ -37,7 +37,11 @@ async fn main() { .help("Show about information") .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("pull")