From ce8f6f456bbfba44245f0c8c625ccaa6bfad06ec Mon Sep 17 00:00:00 2001 From: Kieran Moy Date: Fri, 12 Aug 2022 14:30:34 +0800 Subject: [PATCH] scripts: replace ash with sh ash is unavailable on termux. According to login.in, it should be sh. --- scripts/chsh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/chsh.in b/scripts/chsh.in index a1fe23c..b74f58e 100644 --- a/scripts/chsh.in +++ b/scripts/chsh.in @@ -33,7 +33,7 @@ while true; do done DEFAULT_SHELL=bash -if [ ! -x @TERMUX_PREFIX@/bin/$DEFAULT_SHELL ]; then DEFAULT_SHELL=ash; fi +if [ ! -x @TERMUX_PREFIX@/bin/$DEFAULT_SHELL ]; then DEFAULT_SHELL=sh; fi echo Changing the login shell echo Enter the new value, or press ENTER for the default