From 3888876ed5bdb6a81f3c9bf2419641fa02d37c17 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Fri, 20 Feb 2026 07:38:24 -0800 Subject: [PATCH] add unzip --- src/vm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm.ts b/src/vm.ts index 48899d5..8e384c9 100644 --- a/src/vm.ts +++ b/src/vm.ts @@ -54,7 +54,7 @@ export async function create(log?: (msg: string) => void): Promise { // Provision (as root) log?.("Installing packages") await run( - $`container exec ${CONTAINER_NAME} bash -c ${"apt update && apt install -y curl git neofetch fish"}`, + $`container exec ${CONTAINER_NAME} bash -c ${"apt update && apt install -y curl git neofetch fish unzip"}`, "Package installation") // Create symlinks so git worktree absolute paths from the host resolve inside the container