Private
Public Access
1
0

Fix: Use absolute workspace path in PKGBUILD package() function
Some checks failed
CI/CD Pipeline / Code Format (push) Successful in 11s
CI/CD Pipeline / Build Debian Package (push) Successful in 1m56s
CI/CD Pipeline / Build RPM Package (push) Successful in 3m24s
CI/CD Pipeline / Build Alpine Package (push) Failing after 0s
CI/CD Pipeline / Build Arch Package (push) Successful in 2m14s

This commit is contained in:
2026-04-13 19:37:28 +00:00
parent 542cbc8fb0
commit 7bee3ddd88

View File

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