From 6df299a13a65e1273c6211f134c901431bd2e976 Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Fri, 9 Jan 2026 22:38:16 +0100 Subject: [PATCH] Fix return statement in package installation function --- misc/tools.func | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/tools.func b/misc/tools.func index 69155a0f0..f38e3e268 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -218,6 +218,7 @@ upgrade_packages_with_retry() { -o Dpkg::Options::="--force-confdef" \ -o Dpkg::Options::="--force-confold" \ "${packages[@]}" 2>/dev/null; then + return 0 fi retry=$((retry + 1))