aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeonard Kugis <leonard@kug.is>2025-09-29 03:07:14 +0200
committerLeonard Kugis <leonard@kug.is>2025-09-29 03:07:14 +0200
commitfc9b85239a966b032d4293b1e1f515a2af983139 (patch)
tree7b6cbe67c5710ebd55d0f772e7547dc92f24c51c
parent787144d6f3a85d016a6e411f0c827d4f23b72e8a (diff)
downloadmagisk-bindfs-fc9b85239a966b032d4293b1e1f515a2af983139.tar.gz
Small bugfixes in installerHEADmaster
-rw-r--r--customize.sh (renamed from install.sh)5
-rwxr-xr-xdeploy.sh2
2 files changed, 3 insertions, 4 deletions
diff --git a/install.sh b/customize.sh
index e72d197..dd24002 100644
--- a/install.sh
+++ b/customize.sh
@@ -13,9 +13,8 @@ print_modname() {
}
on_install() {
- ui_print "- Copying files"
- cp -af "$ZIPFILE" "$TMPDIR/zipfile" >/dev/null 2>&1 # no-op safety
- cp -af "$MODPATH/system" "$MODPATH/" 2>/dev/null || true
+ ui_print "- Extracting module files"
+ unzip -o "$ZIPFILE" -d "$MODPATH" >&2
}
set_permissions() {
diff --git a/deploy.sh b/deploy.sh
index 16a5c25..7b7f1e5 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -2,7 +2,7 @@
set -euo pipefail
INCLUDES=(
- "install.sh"
+ "customize.sh"
"module.prop"
"system"
)