Skip to content
This repository has been archived by the owner on Dec 31, 2020. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tiann committed Jan 11, 2020
1 parent 3a9fe2c commit 32e7099
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion common/service.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ while [[ "$max_wait" -gt 0 ]]; do
done

ENFORCE_FILE=/data/misc/taichi_enforce
if [[ -f ${ENFORCE_FILE} ]] && ${BOOT_COMPLETED};then
if [[ -f ${ENFORCE_FILE} ]] && [[ "${BOOT_COMPLETED}" = "true" ]];then
log "RESTORE SELinux"
rm ${ENFORCE_FILE}
setenforce 1
Expand Down
4 changes: 2 additions & 2 deletions module.prop
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
id=taichi
name=Taichi
version=v6.1.0
versionCode=610
version=v6.1.4
versionCode=614
author=weishu
description=Use Xposed modules with Taichi in Magisk.
minMagisk=17000
Binary file modified system/framework/taichi_magisk60.jar
Binary file not shown.
Binary file modified taichi
Binary file not shown.
4 changes: 3 additions & 1 deletion uninstall.sh
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
rm -rf /data/system/taichi
[ -d "/data/system/taichi" ] && rm -rf /data/system/taichi 2>/dev/null
[ -f "/data/misc/taichi" ] && rm -f /data/misc/taichi 2>/dev/null
[ -f "/data/local/tmp/taichi.log" ] && rm -f /data/local/tmp/taichi.log 2>/dev/null

0 comments on commit 32e7099

Please sign in to comment.