From 37c8d767da5a65484e938e8e026edba0f16171a9 Mon Sep 17 00:00:00 2001 From: Codex Date: Sun, 7 Jun 2026 02:17:11 +0000 Subject: [PATCH] fix: make server status core probe POSIX-safe --- scripts/src/docker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/src/docker.ts b/scripts/src/docker.ts index a1561f4f..eb6da45d 100644 --- a/scripts/src/docker.ts +++ b/scripts/src/docker.ts @@ -503,7 +503,7 @@ async function probe(url: string): Promise { function dockerExecJson(container: string, path: string): unknown { const url = `http://127.0.0.1:8080${path}`; const script = [ - "set -euo pipefail", + "set -eu", "if command -v backend-core >/dev/null 2>&1; then", ` exec backend-core --fetch-json ${shellQuote(url)}`, "fi",