Skip to content

Commit

Permalink
print a message when migrating from v0 to v1 config
Browse files Browse the repository at this point in the history
  • Loading branch information
duckinator committed Jan 27, 2025
1 parent ee6ec80 commit fee1961
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cargo-dist/src/migrate/from_v0.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ pub fn do_migrate_from_v0() -> DistResult<()> {
return Ok(());
}

eprintln!("migrating dist config from V0 to V1 format...");

// Load in the root workspace toml to edit and write back
let Ok(old_config) = config::v0::load(manifest_path) else {
// We don't have a valid v0 _or_ v1 config. No migration can be done.
Expand Down

0 comments on commit fee1961

Please sign in to comment.