Updated CI Script

This commit is contained in:
Jan Möbius
2023-11-17 10:30:06 +01:00
parent 2f58b97da2
commit f1bc6c07c9

View File

@@ -69,9 +69,9 @@ else
echo "Copying all required libraries of OpenMesh to the systemlib directory" echo "Copying all required libraries of OpenMesh to the systemlib directory"
if [ "$BUILD_TYPE" == "release" ]; then if [ "$BUILD_TYPE" == "release" ]; then
ldd Build/lib/libOpenMeshCore.so.10.0 | grep "=> /" | awk '{print $3}' | xargs -I '{}' cp -v '{}' systemlib ldd Build/lib/libOpenMeshCore.so.11.0 | grep "=> /" | awk '{print $3}' | xargs -I '{}' cp -v '{}' systemlib
else else
ldd Build/lib/libOpenMeshCored.so.10.0 | grep "=> /" | awk '{print $3}' | xargs -I '{}' cp -v '{}' systemlib ldd Build/lib/libOpenMeshCored.so.11.0 | grep "=> /" | awk '{print $3}' | xargs -I '{}' cp -v '{}' systemlib
fi fi
fi fi