From fddeee8aaf378047e81aa78cd66e0a8f9bc57f56 Mon Sep 17 00:00:00 2001 From: Rhys Arkins Date: Tue, 31 Dec 2024 08:32:24 +0000 Subject: [PATCH] feat(presets): add RUSTC_BOOTSTRAP to safe global env --- lib/config/presets/internal/global.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config/presets/internal/global.ts b/lib/config/presets/internal/global.ts index aaf331d81e69c5..ce8240fcf131d8 100644 --- a/lib/config/presets/internal/global.ts +++ b/lib/config/presets/internal/global.ts @@ -4,7 +4,7 @@ import type { Preset } from '../types'; export const presets: Record = { safeEnv: { - allowedEnv: ['GO*'], + allowedEnv: ['GO*', 'RUSTC_BOOTSTRAP'], description: 'Hopefully safe environment variables to allow users to configure.', },