aboutsummaryrefslogtreecommitdiffstats
path: root/community/gdu/ash.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/gdu/ash.patch')
-rw-r--r--community/gdu/ash.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/community/gdu/ash.patch b/community/gdu/ash.patch
new file mode 100644
index 00000000000..331a556dd53
--- /dev/null
+++ b/community/gdu/ash.patch
@@ -0,0 +1,13 @@
+diff --git a/tui/exec_other.go b/tui/exec_other.go
+index 6fd0b91..04b938d 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
+ }