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
1 changed files with 1 additions and 1 deletions

View File

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