mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-17 09:28:25 +01:00
Fix name of powershell in guess_shell
This commit is contained in:
parent
c41d61eeda
commit
86c33492a7
1 changed files with 1 additions and 1 deletions
|
@ -605,7 +605,7 @@ fn guess_shell() -> anyhow::Result<Shell> {
|
|||
} 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"));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue