Skip to content

Commit ce8f6f4

Browse files
authored
scripts: replace ash with sh
ash is unavailable on termux. According to login.in, it should be sh.
1 parent 185b062 commit ce8f6f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/chsh.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ while true; do
3333
done
3434

3535
DEFAULT_SHELL=bash
36-
if [ ! -x @TERMUX_PREFIX@/bin/$DEFAULT_SHELL ]; then DEFAULT_SHELL=ash; fi
36+
if [ ! -x @TERMUX_PREFIX@/bin/$DEFAULT_SHELL ]; then DEFAULT_SHELL=sh; fi
3737

3838
echo Changing the login shell
3939
echo Enter the new value, or press ENTER for the default

0 commit comments

Comments
 (0)