diff options
| author | ewy <ewy0@protonmail.com> | 2026-07-11 16:24:24 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-07-11 16:24:24 +0200 |
| commit | fc02503aa3b916cb596767a4ba4ca5a1971ca4c7 (patch) | |
| tree | 8790b29ac31d5f088b88753fd3edac65e9cf9172 /runner | |
| parent | 7be590f675be204183d81139907797094db13db3 (diff) | |
add sh and dash as possible shells with pretty low priority
Diffstat (limited to 'runner')
| -rw-r--r-- | runner/shell/shell.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runner/shell/shell.go b/runner/shell/shell.go index 37ca433..235e9cd 100644 --- a/runner/shell/shell.go +++ b/runner/shell/shell.go @@ -26,7 +26,7 @@ var ExtShellMap = map[string]string{ ".ps1": "powershell", } -var Shells = []string{"bash", "bash.exe", "zsh", "fish", "powershell", "powershell.exe", "cmd.exe"} +var Shells = []string{"bash", "bash.exe", "zsh", "fish", "dash", "sh", "powershell", "powershell.exe", "cmd.exe"} var Runner = &shell{ Locations: map[string]string{}, |
