Files
wehub-resource-sync 1b8708893a
Security Scan / tests (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:12:26 +08:00

23 lines
513 B
Bash
Executable File

#!/bin/bash
mkdir -p backend-assets/lib
OS="$(uname)"
if [ "$OS" == "Darwin" ]; then
LIBS="$(otool -L $1 | awk 'NR > 1 { system("echo " $1) } ' | xargs echo)"
elif [ "$OS" == "Linux" ]; then
LIBS="$(ldd $1 | awk 'NF == 4 { system("echo " $3) } ' | xargs echo)"
else
echo "Unsupported OS"
exit 1
fi
for lib in $LIBS; do
cp -f $lib backend-assets/lib
done
echo "==============================="
echo "Copied libraries to backend-assets/lib"
echo "$LIBS"
echo "==============================="