Compare commits
No commits in common. "d11df74ecd26da589135d75cb4d09439e40f8e2a" and "9ed2b1c1920eb7516367ab920b12674beeb8a338" have entirely different histories.
d11df74ecd
...
9ed2b1c192
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@because/sandlot",
|
"name": "@because/sandlot",
|
||||||
"version": "0.0.4",
|
"version": "0.0.3",
|
||||||
"description": "Sandboxed, branch-based development with Claude",
|
"description": "Sandboxed, branch-based development with Claude",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|
|
||||||
|
|
@ -236,9 +236,9 @@ export async function start(): Promise<void> {
|
||||||
export async function ensure(log?: (msg: string) => void): Promise<void> {
|
export async function ensure(log?: (msg: string) => void): Promise<void> {
|
||||||
requireContainer()
|
requireContainer()
|
||||||
|
|
||||||
// Ensure the container daemon is running (--enable-kernel-install skips interactive prompt)
|
// Ensure the container daemon is running
|
||||||
if (DEBUG) await $`container system start --enable-kernel-install`.nothrow()
|
if (DEBUG) await $`container system start`.nothrow()
|
||||||
else await $`container system start --enable-kernel-install`.nothrow().quiet()
|
else await $`container system start`.nothrow().quiet()
|
||||||
|
|
||||||
const s = await status()
|
const s = await status()
|
||||||
if (s === "running") return
|
if (s === "running") return
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user