Skip to content

Commit

Permalink
1 more try
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerJang27 committed Mar 21, 2024
1 parent b545664 commit 621cd50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/driver/driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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",
};
};

Expand Down

0 comments on commit 621cd50

Please sign in to comment.