Add installPersistentTooling call to cached install

This commit is contained in:
Chris Wanstrath 2026-04-13 08:20:19 -07:00
parent 50517227db
commit 049fc4b00b

View File

@ -128,6 +128,7 @@ async function installTooling(cached: boolean, log?: (msg: string) => void): Pro
await run( await run(
$`container exec --user ${USER} ${CONTAINER_NAME} bash -c ${"tar xzf /sandlot/.cache/nvim.tar.gz -C ~/.local --strip-components=1"}`, $`container exec --user ${USER} ${CONTAINER_NAME} bash -c ${"tar xzf /sandlot/.cache/nvim.tar.gz -C ~/.local --strip-components=1"}`,
"Install cached Neovim") "Install cached Neovim")
await installPersistentTooling(log)
return return
} }