fix: ensure that plugin installs use --no-cache when using http proxy to prevent random hangs (see bun issue) (#12161)

This commit is contained in:
Aiden Cline
2026-02-04 12:01:00 -06:00
committed by GitHub
parent ce87121067
commit a2c28fc8d7
3 changed files with 26 additions and 12 deletions

View File

@@ -0,0 +1,3 @@
export function proxied() {
return !!(process.env.HTTP_PROXY || process.env.HTTPS_PROXY || process.env.http_proxy || process.env.https_proxy)
}