From 3af4d86d33a1cb94335b291f24fd51af340b017e Mon Sep 17 00:00:00 2001 From: Lars Erik Wik Date: Wed, 11 Feb 2026 15:11:00 +0100 Subject: [PATCH] Reduced noise in clean-buildmachine Uninstalling all the cfbuild packages creates a lot of noise from the package managers. Instead, let's print output on failure. Ticket: ENT-12619 Signed-off-by: Lars Erik Wik --- build-scripts/clean-buildmachine | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-scripts/clean-buildmachine b/build-scripts/clean-buildmachine index 6ea134c57..e89ece594 100755 --- a/build-scripts/clean-buildmachine +++ b/build-scripts/clean-buildmachine @@ -9,7 +9,8 @@ . "$(dirname "$0")"/functions . detect-environment -uninstall_cfbuild +log_debug "Removing all cfbuild packages..." +run_and_print_on_failure uninstall_cfbuild if [ -z "$PREFIX" ] || [ "$PREFIX" = "/" ]; then fatal "\$PREFIX is not defined, is empty, or is set to the root directory. Aborting to prevent accidental deletion."