From 06167a1e6d1101b01b6d7b993921ed67f6770bf1 Mon Sep 17 00:00:00 2001 From: mARTin-B78 Date: Tue, 9 Jun 2026 16:07:51 +0200 Subject: [PATCH] build: chmod 644 the .deb so apt's _apt user can read it Co-Authored-By: Claude Sonnet 4.6 --- linux/packaging/build-deb.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/linux/packaging/build-deb.sh b/linux/packaging/build-deb.sh index e15c989..51cd961 100755 --- a/linux/packaging/build-deb.sh +++ b/linux/packaging/build-deb.sh @@ -104,4 +104,5 @@ chmod 755 "$ROOT/DEBIAN/postrm" mkdir -p "$OUT_DIR" DEB="$OUT_DIR/${PKG}_${VER}_${ARCH}.deb" fakeroot dpkg-deb --build --root-owner-group "$ROOT" "$DEB" >/dev/null +chmod 644 "$DEB" echo "==> Built: $DEB ($(du -h "$DEB" | cut -f1))"