From a22b5b06429540c7920509c11fd5161ba56a986a Mon Sep 17 00:00:00 2001 From: j-hc <25510067+j-hc@users.noreply.github.com> Date: Wed, 13 Nov 2024 02:39:24 +0300 Subject: [PATCH] Update customize.sh --- revanced-magisk/customize.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/revanced-magisk/customize.sh b/revanced-magisk/customize.sh index 85286c8..9117aa6 100755 --- a/revanced-magisk/customize.sh +++ b/revanced-magisk/customize.sh @@ -139,7 +139,7 @@ if [ $INS = true ]; then if ! install; then abort; fi ui_print "* Extracting native libs" BASEPATHLIB=${BASEPATH}/lib/${ARCH} - if [ ! -d "$BASEPATHLIB" ]; then mkdir -p "$BASEPATHLIB"; else rm -f "$BASEPATHLIB/*" >/dev/null 2>&1 || :; fi + if [ ! -d "$BASEPATHLIB" ]; then mkdir -p "$BASEPATHLIB"; else rm -f "$BASEPATHLIB"/* >/dev/null 2>&1 || :; fi if ! op=$(unzip -j "$MODPATH/$PKG_NAME.apk" "lib/${ARCH_LIB}/*" -d "$BASEPATHLIB" 2>&1); then ui_print "ERROR: extracting native libs failed" abort "$op"