Skip to content

Commit

Permalink
ux: better config message when initializing (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
micielski authored Sep 8, 2024
1 parent 41c0777 commit ea551d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rm-config/src/main_config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl MainConfig {
Err(e) => match e {
ConfigFetchingError::Io(e) if e.kind() == ErrorKind::NotFound => {
utils::put_config::<Self>(Self::DEFAULT_CONFIG, Self::FILENAME)?;
println!("Update {:?} and start rustmission again", Self::path());
println!("Update {:?} (especially connection url) and start rustmission again", Self::path());
std::process::exit(0);
}
ConfigFetchingError::Toml(e) => Err(e).with_context(|| {
Expand Down

0 comments on commit ea551d6

Please sign in to comment.