add HOMEBREW_NO_AUTO_UPDATE to brew upgrades

This commit is contained in:
Dax Raad 2025-06-23 20:36:08 -04:00
parent dbba4a97aa
commit 01d351bebe

View file

@ -115,7 +115,9 @@ export namespace Installation {
case "bun":
return $`bun install -g opencode-ai@${target}`
case "brew":
return $`brew install sst/tap/opencode`
return $`brew install sst/tap/opencode`.env({
HOMEBREW_NO_AUTO_UPDATE: "1",
})
default:
throw new Error(`Unknown method: ${method}`)
}