1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-13 19:29:53 +03:00
aports/community/gdu/ash.patch
2024-06-18 04:19:27 +00:00

13 lines
312 B
Diff

diff --git a/tui/exec_other.go b/tui/exec_other.go
index e05e4e5..8de054e 100644
--- a/tui/exec_other.go
+++ b/tui/exec_other.go
@@ -11,7 +11,7 @@ import (
func getShellBin() string {
shellbin, ok := os.LookupEnv("SHELL")
if !ok {
- shellbin = "/bin/bash"
+ shellbin = "/bin/ash"
}
return shellbin
}