diff options
Diffstat (limited to 'crates/mozart-registry/src/installer_executor')
| -rw-r--r-- | crates/mozart-registry/src/installer_executor/trace_recorder.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/crates/mozart-registry/src/installer_executor/trace_recorder.rs b/crates/mozart-registry/src/installer_executor/trace_recorder.rs index 9fdc91b..c924d73 100644 --- a/crates/mozart-registry/src/installer_executor/trace_recorder.rs +++ b/crates/mozart-registry/src/installer_executor/trace_recorder.rs @@ -12,7 +12,7 @@ //! - Install: `Installing <name> (<version>)` //! - Update (upgrade direction): `Upgrading <name> (<oldVersion> => <newVersion>)` //! - Update (downgrade direction): `Downgrading <name> (<oldVersion> => <newVersion>)` -//! - Uninstall: `Uninstalling <name> (<version>)` +//! - Uninstall: `Removing <name> (<version>)` use mozart_semver::Version; @@ -85,8 +85,7 @@ impl InstallerExecutor for TraceRecorderExecutor { version: &str, _ctx: &ExecuteContext, ) -> anyhow::Result<()> { - self.trace - .push(format!("Uninstalling {} ({})", name, version)); + self.trace.push(format!("Removing {} ({})", name, version)); Ok(()) } } |
