diff --git a/crates/uv-build/src/lib.rs b/crates/uv-build/src/lib.rs index 7d8ff3795..4cf7bc04b 100644 --- a/crates/uv-build/src/lib.rs +++ b/crates/uv-build/src/lib.rs @@ -999,6 +999,7 @@ async fn run_python_script( .env("PATH", modified_path) // Activate the venv .env("VIRTUAL_ENV", venv.root()) + .env("CLICOLOR_FORCE", "1") .output() .await .map_err(|err| Error::CommandFailed(venv.python_executable().to_path_buf(), err))