From 31952ca611e7999c31f15359fa998b9859a18159 Mon Sep 17 00:00:00 2001 From: Chris Olszewski Date: Tue, 21 May 2024 15:55:32 -0700 Subject: [PATCH] feat: pass through AppData by default --- crates/turborepo-lib/src/task_hash.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/turborepo-lib/src/task_hash.rs b/crates/turborepo-lib/src/task_hash.rs index 148462483b1c1..c6de87f431281 100644 --- a/crates/turborepo-lib/src/task_hash.rs +++ b/crates/turborepo-lib/src/task_hash.rs @@ -459,11 +459,13 @@ impl<'a> TaskHasher<'a> { self.env_at_execution_start.from_wildcards(&[ "SHELL", // Command Prompt casing of env variables + "APPDATA", "PATH", "SYSTEMROOT", // Powershell casing of env variables "Path", "SystemRoot", + "AppData", ])?; let tracker_env = self .task_hash_tracker