From 5a8b1b11de46f2bf3c3cb310ff954ffd70862a0b Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Thu, 11 Dec 2025 10:17:14 +0100 Subject: [PATCH] arch packaging: exclude assets from PKGBUILD rsync Exclude the assets/ directory from the PKGBUILD rsync step to avoid permission issues (e.g. map.png) when building the Arch package in Docker as aur_builder. https://chatgpt.com/share/693a8c25-4464-800f-8d5e-5c4579d78b52 --- packaging/arch/PKGBUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index c016c41..7711427 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -34,6 +34,7 @@ prepare() { --exclude="pkg" \ --exclude="srcpkg" \ --exclude="packaging" \ + --exclude="assets" \ "$project_root/" "$srcdir/$_srcdir_name/" }