xbin -> bin

This commit is contained in:
Geoffrey Frogeye 2020-08-08 11:46:33 +02:00
parent af463d0f77
commit 7ebbfb5186
Signed by: geoffrey
GPG key ID: D8A7ECA00A8CD3DD

View file

@ -20,7 +20,7 @@ function prompt { # text
}
if [ -z $ROOT ]; then
prompt "Is this device rooted and BusyBox installed in /system/xbin/?"
prompt "Is this device rooted and BusyBox installed in /system/bin/?"
ROOT=$?
fi
@ -39,5 +39,5 @@ touch ~/.hushlogin
if [ $ROOT == 1 ]; then
apt install tsu
echo '/system/xbin/mount -o remount,rw /; ln -s /data/data/com.termux/files/usr /usr; /system/xbin/mount -o remount,ro /' | tsu
echo '/system/bin/mount -o remount,rw /; ln -s /data/data/com.termux/files/usr /usr; /system/bin/mount -o remount,ro /' | tsu
fi