You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
fix: extracting sha256 sum of webroot files
This commit fixes the issue where "webroot" files would have its sha256 hash extracted to the installation directory by using unzip "-x" flag to exclude ".sha256" files with that.
This commit is contained in:
@@ -110,7 +110,7 @@ mkdir "$MODPATH/bin"
|
|||||||
mkdir "$MODPATH/webroot"
|
mkdir "$MODPATH/webroot"
|
||||||
|
|
||||||
ui_print "- Extracting webroot"
|
ui_print "- Extracting webroot"
|
||||||
unzip -o "$ZIPFILE" "webroot/*" -d "$MODPATH"
|
unzip -o "$ZIPFILE" "webroot/*" -x "*.sha256" -d "$MODPATH"
|
||||||
|
|
||||||
CPU_ABIS=$(getprop ro.product.cpu.abilist)
|
CPU_ABIS=$(getprop ro.product.cpu.abilist)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user