Fix makepkg BUILDDIR: use current dir instead of root-owned cache

This commit is contained in:
nevaforget 2026-04-01 16:57:00 +02:00
parent 64a084a998
commit c948396a1e

View File

@ -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)