Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ksk001100 committed Apr 8, 2024
1 parent 966e171 commit d71bd35
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ fn config_command() -> Command {
.alias("c")
.action(|_| {
if AppConfig::config_exists() {
println!("Config file already exists");
println!(
"Config file already exists: {}",
AppConfig::config_path().to_str().unwrap()
);
return;
}
AppConfig::generate_config_file().unwrap();
Expand Down

0 comments on commit d71bd35

Please sign in to comment.