From 912c8c1859a0e3322e67ea6ebf4c4052741eef1e Mon Sep 17 00:00:00 2001 From: Adrian Wannenmacher Date: Sun, 24 Sep 2023 11:53:46 +0200 Subject: [PATCH] default to current directory --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index ec68b55..10caf16 100644 --- a/src/main.rs +++ b/src/main.rs @@ -48,7 +48,7 @@ struct Args { pub raw: bool, /// The roots to use for discovery. - #[clap(required = true)] + #[clap(default_value = ".")] pub roots: Vec, }