summaryrefslogtreecommitdiff
path: root/runner/shell/shell.go
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-07-11 16:24:24 +0200
committerewy <ewy0@protonmail.com>2026-07-11 16:24:24 +0200
commitfc02503aa3b916cb596767a4ba4ca5a1971ca4c7 (patch)
tree8790b29ac31d5f088b88753fd3edac65e9cf9172 /runner/shell/shell.go
parent7be590f675be204183d81139907797094db13db3 (diff)
add sh and dash as possible shells with pretty low priority
Diffstat (limited to 'runner/shell/shell.go')
-rw-r--r--runner/shell/shell.go2
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{},