Private
Public Access
1
0

fix: Remove apk-package from APKBUILD sources (directory not file)

This commit is contained in:
2026-04-14 00:19:54 +00:00
parent ef34786c11
commit 3799c3c051

6
build-alpine.sh Executable file → Normal file
View File

@ -54,10 +54,12 @@ url="https://gitea.internal/linux-patch-api"
arch="x86_64"
license="MIT"
depends="openrc"
source="apk-package"
source=""
package() {
cp -r "$srcdir"/apk-package/* "$pkgdir"/
# Copy from workspace path (not srcdir - apk-package is created dynamically)
cp -r /workspace/echo/linux_patch_api/apk-package/* "$pkgdir"/
}
}
EOF