diff --git a/src/cli.rs b/src/cli.rs index 0194518..ffea92d 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -605,7 +605,7 @@ fn guess_shell() -> anyhow::Result { } else { // Assume powershell on windows #[cfg(windows)] - return Ok(Shell::Powershell); + return Ok(Shell::PowerShell); #[cfg(not(windows))] return Err(anyhow!("Unable to get shell from environment")); }