From e8e3b190b82d2354739f3156a8e56d1a8d815972 Mon Sep 17 00:00:00 2001 From: Aric Camarata Date: Mon, 6 Jul 2026 15:11:46 -0400 Subject: [PATCH] fix(e2e): golden-path uses 'nself start' (no --detach flag) nself start orchestrates docker and returns (already detached); there is no --detach flag ('unknown flag: --detach' failed golden-path step 5). Match the real CLI interface. --- scripts/golden-path.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/golden-path.sh b/scripts/golden-path.sh index f1bbf8c3..f1d4e777 100755 --- a/scripts/golden-path.sh +++ b/scripts/golden-path.sh @@ -320,7 +320,7 @@ run_step 4 "nself build" \ # ── Step 5: nself start ─────────────────────────────────────────────────────── run_step 5 "nself start" \ - bash -c "cd ${PROJECT_DIR} && nself start --detach" + bash -c "cd ${PROJECT_DIR} && nself start" [ "${STEP_STATUS[5]}" = "fail" ] && { write_report; exit 1; } # ── Step 6: Wait for services healthy ──────────────────────────────────────── @@ -363,7 +363,7 @@ run_step 10 "nself license set " \ # ── Step 11: nself admin start ─────────────────────────────────────────────── run_step 11 "nself admin start" \ - bash -c "cd ${PROJECT_DIR} && nself admin start --detach" + bash -c "cd ${PROJECT_DIR} && nself admin start" [ "${STEP_STATUS[11]}" = "fail" ] && { write_report; exit 1; } # ── Step 12: curl localhost:3021/api/health → 200 ────────────────────────────