diff options
| author | Leonard Kugis <leonard@kug.is> | 2025-09-29 03:07:14 +0200 |
|---|---|---|
| committer | Leonard Kugis <leonard@kug.is> | 2025-09-29 03:07:14 +0200 |
| commit | fc9b85239a966b032d4293b1e1f515a2af983139 (patch) | |
| tree | 7b6cbe67c5710ebd55d0f772e7547dc92f24c51c | |
| parent | 787144d6f3a85d016a6e411f0c827d4f23b72e8a (diff) | |
| download | magisk-bindfs-fc9b85239a966b032d4293b1e1f515a2af983139.tar.gz | |
Small bugfixes in installer
| -rw-r--r-- | customize.sh (renamed from install.sh) | 5 | ||||
| -rwxr-xr-x | deploy.sh | 2 |
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() { @@ -2,7 +2,7 @@ set -euo pipefail INCLUDES=( - "install.sh" + "customize.sh" "module.prop" "system" ) |
