Skip to content

Commit

Permalink
Bump to 0.9.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-TSNG committed Jan 5, 2024
1 parent fbb792e commit 698e6e6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ val gitCommitHash = "git rev-parse --verify --short HEAD".execute()

val moduleId by extra("zygisksu")
val moduleName by extra("Zygisk Next")
val verName by extra("v4-0.9.1")
val verName by extra("v4-0.9.1.1")
val verCode by extra(gitCommitCount)
val commitHash by extra(gitCommitHash)
val minKsuVersion by extra(10940)
val minKsudVersion by extra(11424)
val minKsudVersion by extra(11425)
val maxKsuVersion by extra(20000)
val minMagiskVersion by extra(26402)

Expand Down
4 changes: 2 additions & 2 deletions module/src/post-fs-data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ create_sys_perm() {
chcon u:object_r:system_file:s0 $1
}

TMP_PATH=/sbin
[ -f /sbin ] || TMP_PATH=/debug_ramdisk
export TMP_PATH=/sbin
[ -d /sbin ] || export TMP_PATH=/debug_ramdisk

create_sys_perm $TMP_PATH

Expand Down
4 changes: 2 additions & 2 deletions module/src/zygisk-ctl.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MODDIR=${0%/*}/..

TMP_PATH=/sbin
[ -f /sbin ] || TMP_PATH=/debug_ramdisk
export TMP_PATH=/sbin
[ -d /sbin ] || export TMP_PATH=/debug_ramdisk

exec $MODDIR/bin/zygisk-ptrace64 ctl $*

0 comments on commit 698e6e6

Please sign in to comment.