From 6cebaf204f0b6b18329e0c4cb151f86f98df756c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Wed, 26 Jan 2022 01:05:34 +1300 Subject: [PATCH] Restore shell default to sh on unix (#240) --- cli/src/config/runtime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/config/runtime.rs b/cli/src/config/runtime.rs index f98ac2e8..56a51cba 100644 --- a/cli/src/config/runtime.rs +++ b/cli/src/config/runtime.rs @@ -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