From 5123287ef7475785eef79672cd49209cb4ca3627 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 7 Apr 2026 01:28:55 +0000 Subject: [PATCH] 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> --- modules/core/sovran-hub.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/sovran-hub.nix b/modules/core/sovran-hub.nix index 0000a73..e0309c9 100644 --- a/modules/core/sovran-hub.nix +++ b/modules/core/sovran-hub.nix @@ -220,7 +220,7 @@ let # Wait for Hub server to become ready (max ~15 seconds) 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 done