Start container with progress logging

This commit is contained in:
Chris Wanstrath 2026-02-23 07:21:46 -08:00
parent 5b9998b138
commit 6ec203e67f

View File

@ -201,7 +201,7 @@ export async function start(): Promise<void> {
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. */