From 7b85a09603450c2f3a37598435a00a689c9295d4 Mon Sep 17 00:00:00 2001 From: Khushboo Vashi Date: Tue, 18 Nov 2025 12:48:13 +0530 Subject: [PATCH] Fix Debian builds by executing sudo apt update. --- pkg/debian/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/debian/build.sh b/pkg/debian/build.sh index 601b0ed7d..8302d34ec 100755 --- a/pkg/debian/build.sh +++ b/pkg/debian/build.sh @@ -17,7 +17,7 @@ export PYTHONDONTWRITEBYTECODE=1 source pkg/linux/build-functions.sh echo "Running apt update..." -apt update +sudo apt update # Assemble the "standard" installation footprint _setup_env "$0" "debian"