From ec16a6722b3696acde1c512bc17376eaef1f2c0f Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Sun, 15 Mar 2026 12:40:40 -0700 Subject: [PATCH] Replace `make` with `build-essential` in package lists --- src/vm.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vm.ts b/src/vm.ts index 6f95b6e..4fdebbd 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 make" - : "curl git fish unzip make" + ? "curl git fish build-essential" + : "curl git fish unzip build-essential" await run( $`container exec ${CONTAINER_NAME} bash -c ${`apt update && apt install -y ${packages}`}`, "Package installation")