attempt to fix windows ci not starting codex fast enough

This commit is contained in:
Eric 2023-11-16 16:52:58 +11:00
parent 424d6fb560
commit 6b1e0b0f38
No known key found for this signature in database

View File

@ -54,6 +54,8 @@ proc waitUntilStarted*(node: NodeProcess) =
if node.debug:
sleep(5_000)
else:
when defined(windows):
sleep(5_000)
node.waitUntilOutput("Started codex node")
proc startNode*(args: openArray[string], debug: string | bool = false): NodeProcess =