mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-01 06:01:38 +00:00
Limit shared lib search to build libs
Co-authored-by: Valorith <76063792+Valorith@users.noreply.github.com>
This commit is contained in:
@@ -78,7 +78,7 @@ jobs:
|
|||||||
|
|
||||||
# Add shared libraries needed for runtime (from build/bin and build/libs)
|
# Add shared libraries needed for runtime (from build/bin and build/libs)
|
||||||
if [ -d ../libs ]; then
|
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
|
while IFS= read -r -d '' lib; do
|
||||||
$ZIP_CMD "$lib"
|
$ZIP_CMD "$lib"
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user