Remove error suppression to resolve conflicts with base branch

Co-authored-by: Valorith <76063792+Valorith@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-01-24 19:16:10 +00:00
parent 50d4ba04dd
commit 1e600896d6

View File

@ -47,7 +47,7 @@ jobs:
# Add all executable files (excluding tests)
for f in *; do
if [ -f "$f" ] && [ -x "$f" ] && [ "$f" != "tests" ]; then
zip -uj eqemu-server-linux-x64.zip "$f" 2>/dev/null || true
zip -uj eqemu-server-linux-x64.zip "$f"
fi
done
ls -la eqemu-server-linux-x64.zip