From 5c1862ce4c9f2735c5cb55314f35e3973d268466 Mon Sep 17 00:00:00 2001 From: Mikhail Chusavitin Date: Wed, 15 Apr 2026 17:37:08 +0300 Subject: [PATCH] Use lb clean --all to clear bootstrap cache on every build Prevents stale debootstrap cache from bypassing --debootstrap-options changes (e.g. --include=ca-certificates added in v8.15). Co-Authored-By: Claude Sonnet 4.6 --- iso/builder/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iso/builder/build.sh b/iso/builder/build.sh index d86b246..d90e9ae 100755 --- a/iso/builder/build.sh +++ b/iso/builder/build.sh @@ -1305,7 +1305,7 @@ BEE_GPU_VENDOR_UPPER="$(echo "${BUILD_VARIANT}" | tr 'a-z-' 'A-Z_')" export BEE_GPU_VENDOR_UPPER cd "${LB_DIR}" -run_step_sh "live-build clean" "80-lb-clean" "lb clean 2>&1 | tail -3" +run_step_sh "live-build clean" "80-lb-clean" "lb clean --all 2>&1 | tail -3" run_step_sh "live-build config" "81-lb-config" "lb config 2>&1 | tail -5" dump_memtest_debug "pre-build" "${LB_DIR}" run_step_sh "live-build build" "90-lb-build" "lb build 2>&1"