From 9e59337e15c9b2aedc1079790b8f69b3b54081fc Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Wed, 24 Apr 2024 18:05:05 +0200 Subject: [PATCH] fix cli default value --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.rs b/src/cli.rs index 4e32bbb..b935284 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -4,7 +4,7 @@ use std::path::PathBuf; #[command(version, about)] pub struct Command { /// The config file to use - #[arg(short, long, default_value = ".configs/config.yml")] + #[arg(short, long, default_value = "configs/config.yml")] pub config: PathBuf, } pub fn parse_args() -> Command {