diff --git a/crates/deno_task_shell/src/shell/types.rs b/crates/deno_task_shell/src/shell/types.rs index 9d749e6..9f8aa6f 100644 --- a/crates/deno_task_shell/src/shell/types.rs +++ b/crates/deno_task_shell/src/shell/types.rs @@ -117,7 +117,10 @@ impl ShellState { pub fn get_var(&self, name: &str) -> Option<&String> { let (original_name, updated_name) = if cfg!(windows) { - (Cow::Owned(name.to_string()), Cow::Owned(name.to_uppercase())) + ( + Cow::Owned(name.to_string()), + Cow::Owned(name.to_uppercase()), + ) } else { (Cow::Borrowed(name), Cow::Borrowed(name)) };