Skip to content

Commit

Permalink
fix cli default value (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
ermalkaleci authored Apr 25, 2024
1 parent a4f5998 commit fe67ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit fe67ac7

Please sign in to comment.