From c948396a1ec25b9893ca25e7874e12efd43aea8d Mon Sep 17 00:00:00 2001 From: nevaforget Date: Wed, 1 Apr 2026 16:57:00 +0200 Subject: [PATCH] Fix makepkg BUILDDIR: use current dir instead of root-owned cache --- .gitea/workflows/build-and-publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build-and-publish.yaml b/.gitea/workflows/build-and-publish.yaml index 79eb74e..70fa39a 100644 --- a/.gitea/workflows/build-and-publish.yaml +++ b/.gitea/workflows/build-and-publish.yaml @@ -37,7 +37,7 @@ jobs: cd "$pkg" # Build package as non-root user - su builder -c "makepkg -sfd --noconfirm" + su builder -c "BUILDDIR=. makepkg -sfd --noconfirm" # Find the built package file PKG_FILE=$(ls -t *.pkg.tar.zst 2>/dev/null | head -1)