diff options
author | HasanAlrimawi <141642411+HasanAlrimawi@users.noreply.github.com> | 2024-08-06 11:14:06 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-06 08:14:06 +0000 |
commit | bbf23190d4eee76f42170af61a3f9d1572b97d49 (patch) | |
tree | 3d44fd3a4fff6564e5d67928ba616e4fc4c1f646 /cli/tools/registry | |
parent | 6995bd5bcc44a0c7e1620a7654e324a9505c8ca9 (diff) |
fix: update dry run success message (#24885)
Diffstat (limited to 'cli/tools/registry')
-rw-r--r-- | cli/tools/registry/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/registry/mod.rs b/cli/tools/registry/mod.rs index 1a7a78131..51aeb1221 100644 --- a/cli/tools/registry/mod.rs +++ b/cli/tools/registry/mod.rs @@ -165,7 +165,7 @@ pub async fn publish( log::info!(" {} ({})", file.specifier, human_size(file.size as f64),); } } - log::warn!("{} Aborting due to --dry-run", colors::yellow("Warning")); + log::warn!("{} Dry run complete", colors::green("Success")); return Ok(()); } |