From 049fc4b00b5ea3c25a0df3a98fbd2afdd87385ad Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Mon, 13 Apr 2026 08:20:19 -0700 Subject: [PATCH] Add installPersistentTooling call to cached install --- src/vm.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vm.ts b/src/vm.ts index 0617e3a..2f5a66c 100644 --- a/src/vm.ts +++ b/src/vm.ts @@ -128,6 +128,7 @@ async function installTooling(cached: boolean, log?: (msg: string) => void): Pro await run( $`container exec --user ${USER} ${CONTAINER_NAME} bash -c ${"tar xzf /sandlot/.cache/nvim.tar.gz -C ~/.local --strip-components=1"}`, "Install cached Neovim") + await installPersistentTooling(log) return }