Private
Public Access
1
0

Fix: Use absolute workspace path in PKGBUILD package() function

This commit is contained in:
2026-04-13 19:37:28 +00:00
parent 4a58850889
commit f81568adf3

View File

@ -49,8 +49,8 @@ license=('MIT')
depends=('systemd') depends=('systemd')
package() { package() {
# Copy from current working directory (not srcdir) # Use absolute path since makepkg changes working directory to srcdir
cp -r "$(pwd)"/arch-package/* "$pkgdir"/ cp -r /workspace/echo/linux_patch_api/arch-package/* "$pkgdir"/
} }
EOF EOF