Compare commits

...

1 Commits

Author SHA1 Message Date
David Wiesen
aeb1c6f72d Prefer pwsh when auto-selecting Windows shell 2026-04-29 10:02:06 -07:00

View File

@@ -1,5 +1,7 @@
use crate::shell_detect::detect_shell_type;
use crate::shell_snapshot::ShellSnapshot;
#[cfg(windows)]
use codex_shell_command::powershell::try_find_pwsh_executable_blocking;
use serde::Deserialize;
use serde::Serialize;
use std::path::PathBuf;
@@ -250,7 +252,9 @@ const POWERSHELL_FALLBACK_PATHS: &[&str] =
const POWERSHELL_FALLBACK_PATHS: &[&str] = &[];
fn get_powershell_shell(path: Option<&PathBuf>) -> Option<Shell> {
let shell_path = get_shell_path(ShellType::PowerShell, path, "pwsh", PWSH_FALLBACK_PATHS)
let shell_path = explicit_shell_path(path)
.or_else(autodiscovered_pwsh_path)
.or_else(|| get_shell_path(ShellType::PowerShell, path, "pwsh", PWSH_FALLBACK_PATHS))
.or_else(|| {
get_shell_path(
ShellType::PowerShell,
@@ -267,6 +271,20 @@ fn get_powershell_shell(path: Option<&PathBuf>) -> Option<Shell> {
})
}
fn explicit_shell_path(path: Option<&PathBuf>) -> Option<PathBuf> {
path.and_then(file_exists)
}
#[cfg(windows)]
fn autodiscovered_pwsh_path() -> Option<PathBuf> {
try_find_pwsh_executable_blocking().map(Into::into)
}
#[cfg(not(windows))]
fn autodiscovered_pwsh_path() -> Option<PathBuf> {
None
}
fn get_cmd_shell(path: Option<&PathBuf>) -> Option<Shell> {
let shell_path = get_shell_path(ShellType::Cmd, path, "cmd", &[]);