Restore shell default to sh on unix (#240)

This commit is contained in:
Félix Saparelli 2022-01-26 01:05:34 +13:00
parent 94b4dffc02
commit 6cebaf204f

View File

@ -236,7 +236,7 @@ fn default_shell() -> Shell {
#[cfg(not(windows))] #[cfg(not(windows))]
fn default_shell() -> Shell { fn default_shell() -> Shell {
Shell::default() Shell::Unix("sh".to_string())
} }
// because Shell::Cmd is only on windows // because Shell::Cmd is only on windows