Fix curl command in hub-autolaunch-script (remove unnecessary -w flag)

Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/0b0d70c0-01d1-49d1-b9ca-8d4f8e5af64a

Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-04-07 01:28:55 +00:00
committed by GitHub
parent 13e3b76c88
commit 5123287ef7

View File

@@ -220,7 +220,7 @@ let
# Wait for Hub server to become ready (max ~15 seconds) # Wait for Hub server to become ready (max ~15 seconds)
for i in $(seq 1 15); do for i in $(seq 1 15); do
curl -s -o /dev/null -w "" http://localhost:8937 && break curl -s -o /dev/null http://localhost:8937 && break
sleep 1 sleep 1
done done