From 35888fa2b2d7b9b32b28605435defda26464d3dd Mon Sep 17 00:00:00 2001 From: Alistair Smith Date: Wed, 20 Aug 2025 13:33:41 -0700 Subject: [PATCH] deslop --- src/install/lockfile/printer/tree_printer.zig | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/install/lockfile/printer/tree_printer.zig b/src/install/lockfile/printer/tree_printer.zig index 34d391e1f5..ec67a03d9e 100644 --- a/src/install/lockfile/printer/tree_printer.zig +++ b/src/install/lockfile/printer/tree_printer.zig @@ -400,9 +400,8 @@ pub fn print( .none, .dir => { printed_installed_update_request = true; - // Determine if this package was updated or newly added const was_updated = manager.updating_packages.contains(package_name); - const action_word = if (was_updated) "updated" else "added"; + const action_word = if (was_updated) "updated" else "installed"; const fmt = comptime Output.prettyFmt("{s} {s}@{}\n", enable_ansi_colors); @@ -426,9 +425,8 @@ pub fn print( }; { - // Determine if this package was updated or newly added const was_updated = manager.updating_packages.contains(package_name); - const action_word = if (was_updated) "updated" else "added"; + const action_word = if (was_updated) "updated" else "installed"; const fmt = comptime Output.prettyFmt("{s} {s}@{} with binaries:\n", enable_ansi_colors);