Skip to content

Commit

Permalink
fix boot mount
Browse files Browse the repository at this point in the history
  • Loading branch information
j-hc committed Mar 31, 2024
1 parent e47771c commit 383ba81
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions revanced-magisk/service.sh
@@ -1,9 +1,8 @@
#!/system/bin/sh
# shellcheck disable=SC2086,SC1091
. $MODPATH/config

MODDIR=${0%/*}
RVPATH=$NVBASE/rvhc/${MODDIR##*/}.apk
. $MODDIR/config

until [ "$(getprop sys.boot_completed)" = 1 ]; do sleep 1; done
until [ -d "/sdcard/Android" ]; do sleep 1; done
Expand Down

0 comments on commit 383ba81

Please sign in to comment.