From c68c9b5e0d36fd3788445cb0a61122cb113d87b5 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Sun, 15 Mar 2026 09:34:27 -0700 Subject: [PATCH] Replace unzip with make in package list --- src/vm.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vm.ts b/src/vm.ts index 5c6d966..6f95b6e 100644 --- a/src/vm.ts +++ b/src/vm.ts @@ -80,8 +80,8 @@ async function createContainer(home: string): Promise { /** Install base system packages (as root). */ async function installPackages(cached: boolean): Promise { const packages = cached - ? "curl git fish" - : "curl git fish unzip" + ? "curl git fish make" + : "curl git fish unzip make" await run( $`container exec ${CONTAINER_NAME} bash -c ${`apt update && apt install -y ${packages}`}`, "Package installation")