···2323 false => compare_configurations(&Configuration::empty(), &cfg),
2424 };
25252626- if !no_confirm && !dry_run {
2727- if diffs.is_empty() {
2828- println!(
2929- "{}",
3030- "No changes detected. Your environment is already up to date.".green()
3131- );
3232- return Ok(());
3333- }
2626+ if diffs.is_empty() {
2727+ println!(
2828+ "{}",
2929+ "No changes detected. Your environment is already up to date.".green()
3030+ );
3131+ return Ok(());
3232+ }
34333535- println!("The following changes will be made:");
3636- for d in diffs.iter().clone() {
3737- println!("{}", d);
3838- }
3434+ println!("The following changes will be made:");
3535+ for d in diffs.iter().clone() {
3636+ println!("{}", d);
3737+ }
39383939+ if !no_confirm && !dry_run {
4040 match std::path::Path::new(CONFIG_FILE).exists() {
4141 true => {
4242 println!(