From bbf12b8c56b253a4e5c09c01a91aa6a0319634d9 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Mon, 30 Mar 2026 18:42:51 -0700 Subject: [PATCH] Install sccache from prebuilt binary instead of compiling from source Downloading the release tarball is significantly faster than cargo install, which must compile sccache and all its dependencies. --- src/vm.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/vm.ts b/src/vm.ts index f24bdcb..2d24f66 100644 --- a/src/vm.ts +++ b/src/vm.ts @@ -183,8 +183,11 @@ async function installPersistentTooling(log?: (msg: string) => void): Promise