mirror of
https://github.com/oven-sh/bun
synced 2026-02-14 21:01:52 +00:00
deslop
This commit is contained in:
@@ -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("<r><green>{s}<r> <b>{s}<r><d>@{}<r>\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("<r><green>{s}<r> {s}<r><d>@{}<r> with binaries:\n", enable_ansi_colors);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user