From 621cd50db9de3f513f5d75a20d10cd710d28b109 Mon Sep 17 00:00:00 2001 From: Tyler Jang Date: Thu, 21 Mar 2024 14:36:11 -0700 Subject: [PATCH] 1 more try --- tests/driver/driver.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/driver/driver.ts b/tests/driver/driver.ts index 992d9189b..16813b3d6 100644 --- a/tests/driver/driver.ts +++ b/tests/driver/driver.ts @@ -30,7 +30,7 @@ Please call this method after setup has been called.`; export const executionEnv = (sandbox: string) => { // trunk-ignore(eslint/@typescript-eslint/no-unused-vars): Strip TRUNK_CLI_VERSION from CI-Debugger - const { PWD, INIT_CWD, TRUNK_CLI_VERSION, TEMP, ...strippedEnv } = process.env; + const { PWD, INIT_CWD, TRUNK_CLI_VERSION, TEMP, TMP, ...strippedEnv } = process.env; return { ...strippedEnv, // This keeps test downloads separate from manual trunk invocations @@ -40,6 +40,7 @@ export const executionEnv = (sandbox: string) => { TRUNK_SEGMENT: "off", TRUNK_MIXPANEL: "off", TEMP: "C:\\Users\\runneradmin\\AppData\\Local\\Temp", + TMP: "C:\\Users\\runneradmin\\AppData\\Local\\Temp", }; };