diff --git a/box/settings.ini b/box/settings.ini index ccc9a88..6392b3b 100755 --- a/box/settings.ini +++ b/box/settings.ini @@ -1,6 +1,6 @@ #!/system/bin/sh -if [ ! -f /system/bin/busybox ]; then +if ! command -v busybox &> /dev/null; then export PATH="/data/adb/magisk:/data/adb/ksu/bin:/data/adb/ap/bin:$PATH:/system/bin" fi @@ -134,4 +134,4 @@ log() { # Print messages to a log file echo "${message}" >> ${box_log} 2>&1 fi -} \ No newline at end of file +}