Update .github/workflows/release.yaml

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Vayle 2026-01-24 14:10:00 -05:00 committed by GitHub
parent 8fae26133c
commit 0ebff2e68e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,16 +47,16 @@ jobs:
# Verify that critical binaries exist # Verify that critical binaries exist
REQUIRED_BINARIES=(world zone ucs queryserv eqlaunch shared_memory) REQUIRED_BINARIES=(world zone ucs queryserv eqlaunch shared_memory)
MISSING_BINARIES="" MISSING_BINARIES=()
for binary in "${REQUIRED_BINARIES[@]}"; do for binary in "${REQUIRED_BINARIES[@]}"; do
if [ ! -f "$binary" ]; then if [ ! -f "$binary" ]; then
MISSING_BINARIES="$MISSING_BINARIES $binary" MISSING_BINARIES+=("$binary")
fi fi
done done
if [ -n "$MISSING_BINARIES" ]; then if [ ${#MISSING_BINARIES[@]} -ne 0 ]; then
echo "Error: Required binaries not found:$MISSING_BINARIES" echo "Error: Required binaries not found: ${MISSING_BINARIES[*]}"
echo "Build may have failed. Refusing to create incomplete package." echo "Build may have failed. Refusing to create incomplete package."
exit 1 exit 1
fi fi