From d02a21ebd3909e4dacc0e837715d8aab28e5e137 Mon Sep 17 00:00:00 2001 From: Abhijith Balan Date: Mon, 8 Sep 2025 19:31:43 +0530 Subject: [PATCH] Fix missing flag for apt upgrade to fix build failures due to upstream issue. --- Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index af342d0b..c9eb3062 100644 --- a/Earthfile +++ b/Earthfile @@ -689,7 +689,7 @@ base-image: IF [ "$IS_UKI" = "false" ] RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ - apt-get upgrade $APT_UPGRADE_FLAGS && \ + apt-get upgrade $APT_UPGRADE_FLAGS --fix-missing && \ apt-get install --no-install-recommends -y \ util-linux \ # Provides essential utilities for Linux systems, including disk management tools. parted \ # Used for creating and managing disk partitions.