From f81568adf38362062075f8c9c5e4ff1991b61163 Mon Sep 17 00:00:00 2001 From: Echo Date: Mon, 13 Apr 2026 19:37:28 +0000 Subject: [PATCH] Fix: Use absolute workspace path in PKGBUILD package() function --- build-arch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-arch.sh b/build-arch.sh index e33d9cd..f4fca2c 100755 --- a/build-arch.sh +++ b/build-arch.sh @@ -49,8 +49,8 @@ license=('MIT') depends=('systemd') package() { - # Copy from current working directory (not srcdir) - cp -r "$(pwd)"/arch-package/* "$pkgdir"/ + # Use absolute path since makepkg changes working directory to srcdir + cp -r /workspace/echo/linux_patch_api/arch-package/* "$pkgdir"/ } EOF