aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands/archive.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart/src/commands/archive.rs')
-rw-r--r--crates/mozart/src/commands/archive.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/mozart/src/commands/archive.rs b/crates/mozart/src/commands/archive.rs
index 4386e16..044178f 100644
--- a/crates/mozart/src/commands/archive.rs
+++ b/crates/mozart/src/commands/archive.rs
@@ -1,5 +1,5 @@
use clap::Args;
-use mozart_core::console::Verbosity;
+use mozart_core::console_writeln;
use std::path::PathBuf;
#[derive(Args)]
@@ -233,7 +233,7 @@ pub async fn execute(
} else {
target_path.display().to_string()
};
- console.write_stdout(&format!("Created: {}", display_path), Verbosity::Normal);
+ console_writeln!(console, &format!("Created: {}", display_path),);
Ok(())
}