mirror of
https://github.com/j-hc/revanced-magisk-module.git
synced 2025-05-02 15:44:31 +02:00
13 lines
312 B
Bash
13 lines
312 B
Bash
#!/system/bin/sh
|
|
# shellcheck disable=SC2086
|
|
MODDIR=${0%/*}
|
|
until [ "$(getprop sys.boot_completed)" = 1 ]; do
|
|
sleep 1
|
|
done
|
|
BASEPATH=$(pm path __PKGNAME | grep base)
|
|
BASEPATH=${BASEPATH#*:}
|
|
if [ "$BASEPATH" ]; then
|
|
chcon u:object_r:apk_data_file:s0 $MODDIR/base.apk
|
|
mount -o bind $MODDIR/base.apk $BASEPATH
|
|
fi
|