Commit 02e039d7 authored by topjohnwu's avatar topjohnwu

Small fixes

parent 9f933331
...@@ -310,7 +310,7 @@ case $1 in ...@@ -310,7 +310,7 @@ case $1 in
if [ -f $UNINSTALLER ]; then if [ -f $UNINSTALLER ]; then
touch /dev/.magisk.unblock touch /dev/.magisk.unblock
chcon u:object_r:device:s0 /dev/.magisk.unblock chcon u:object_r:device:s0 /dev/.magisk.unblock
sh $UNINSTALLER BOOTMODE=true sh $UNINSTALLER
exit exit
fi fi
...@@ -493,10 +493,10 @@ case $1 in ...@@ -493,10 +493,10 @@ case $1 in
bind_mount $COREDIR/hosts /system/etc/hosts bind_mount $COREDIR/hosts /system/etc/hosts
fi fi
if [ -f /data/magisk/magisk.apk ]; then if [ -f $BINPATH/magisk.apk ]; then
if [ -z `ls /data/app | grep com.topjohnwu.magisk` ]; then if ! ls /data/app | grep com.topjohnwu.magisk; then
mkdir /data/app/com.topjohnwu.magisk-1 mkdir /data/app/com.topjohnwu.magisk-1
cp /data/magisk/magisk.apk /data/app/com.topjohnwu.magisk-1/base.apk cp $BINPATH/magisk.apk /data/app/com.topjohnwu.magisk-1/base.apk
chown 1000.1000 /data/app/com.topjohnwu.magisk-1 chown 1000.1000 /data/app/com.topjohnwu.magisk-1
chown 1000.1000 /data/app/com.topjohnwu.magisk-1/base.apk chown 1000.1000 /data/app/com.topjohnwu.magisk-1/base.apk
chmod 755 /data/app/com.topjohnwu.magisk-1 chmod 755 /data/app/com.topjohnwu.magisk-1
...@@ -504,7 +504,7 @@ case $1 in ...@@ -504,7 +504,7 @@ case $1 in
chcon u:object_r:apk_data_file:s0 /data/app/com.topjohnwu.magisk-1 chcon u:object_r:apk_data_file:s0 /data/app/com.topjohnwu.magisk-1
chcon u:object_r:apk_data_file:s0 /data/app/com.topjohnwu.magisk-1/base.apk chcon u:object_r:apk_data_file:s0 /data/app/com.topjohnwu.magisk-1/base.apk
fi fi
rm -f /data/magisk/magisk.apk 2>/dev/null rm -f $BINPATH/magisk.apk 2>/dev/null
fi fi
# Expose busybox # Expose busybox
......
# Detect whether in boot mode [ -z $BOOTMODE ] && BOOTMODE=false
ps | grep zygote | grep -v grep >/dev/null && BOOTMODE=true || BOOTMODE=false
# This path should work in any cases # This path should work in any cases
TMPDIR=/dev/tmp TMPDIR=/dev/tmp
......
This diff was suppressed by a .gitattributes entry.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment