From 6ec203e67f31337132ead6a47e6bd8ec76554c07 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Mon, 23 Feb 2026 07:21:46 -0800 Subject: [PATCH] Start container with progress logging --- src/vm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm.ts b/src/vm.ts index adee6f1..29d267b 100644 --- a/src/vm.ts +++ b/src/vm.ts @@ -201,7 +201,7 @@ export async function start(): Promise { const s = await status() if (s === "running") return if (s === "missing") throw new Error("Container does not exist. Use 'sandlot vm create' first.") - await $`container start ${CONTAINER_NAME}`.quiet() + await run($`container start ${CONTAINER_NAME}`, "Container start") } /** Ensure the sandlot container exists and is running. Creates and provisions on first use. */