We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07f7cac commit 6762badCopy full SHA for 6762bad
1 file changed
META-INF/com/google/android/update-binary
@@ -0,0 +1,17 @@
1
+#!/sbin/sh
2
+#
3
+FD=$2
4
+ui_print() {
5
+ echo -n -e "ui_print $1\n" > /proc/self/fd/$FD
6
+ echo -n -e "ui_print\n" > /proc/self/fd/$FD
7
+}
8
9
+ui_print " "
10
+sleep 1
11
+ui_print "Find last Magisk module ..."
12
+FIND=`find /data/adb/modules/ -type d -maxdepth 1 |sort -nr |head -1`
13
14
15
+ui_print "... and delete this"
16
+rm -rf $FIND
17
0 commit comments