Skip to content

Commit

Permalink
Change TMP for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pyranota committed Nov 14, 2024
1 parent 1b885ce commit deff3b0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion backend/windmill-worker/src/python_executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,6 @@ pub async fn handle_python_reqs(
.envs(envs)
.envs(PROXY_ENVS.clone())
.env("SystemRoot", SYSTEM_ROOT.as_str())
.env("TMP", "C:\\Users\\alex\\AppData\\Local\\Temp")
.env(
"TMP",
std::env::var("TMP").unwrap_or_else(|_| String::from("/tmp")),
Expand Down

0 comments on commit deff3b0

Please sign in to comment.