Skip to content

Commit 4882a8b

Browse files
committed
🤖 style: format scripts/check-bench-agent.sh
1 parent 59caae9 commit 4882a8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/check-bench-agent.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33

4-
# This script verifies that the terminal-bench agent entry point
4+
# This script verifies that the terminal-bench agent entry point
55
# referenced in mux-run.sh is valid and can be executed (imports resolve).
66

77
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
@@ -39,14 +39,14 @@ echo "Verifying agent CLI startup (checking imports)..."
3939
if ! output=$(bun "$FULL_CLI_PATH" --help 2>&1); then
4040
# It failed, which is expected (no args/bad args), but we need to check WHY
4141
exit_code=$?
42-
42+
4343
# Check for known import/worker errors
4444
if echo "$output" | grep -qE "Module not found|Worker error|Cannot find module"; then
4545
echo "❌ Error: Agent CLI failed to start due to import/worker errors:"
4646
echo "$output"
4747
exit 1
4848
fi
49-
49+
5050
# If it failed just because of arguments, that's fine - it means the code loaded.
5151
echo "✅ Agent CLI loaded successfully (ignoring argument errors)"
5252
else

0 commit comments

Comments
 (0)