Limit shared lib search to build libs

Co-authored-by: Valorith <76063792+Valorith@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-01-25 00:30:08 +00:00
parent 907ac747eb
commit 56266f6f21

View File

@ -78,7 +78,7 @@ jobs:
# Add shared libraries needed for runtime (from build/bin and build/libs)
if [ -d ../libs ]; then
find . ../libs -type f \( -name "*.so" -o -name "*.so.[0-9]*" \) -print0 | \
find ../libs -type f \( -name "*.so" -o -name "*.so.[0-9]*" \) -print0 | \
while IFS= read -r -d '' lib; do
$ZIP_CMD "$lib"
done