You've already forked PlayIntegrityFork
mirror of
https://github.com/osm0sis/PlayIntegrityFork.git
synced 2025-09-06 06:37:06 +00:00
Work around inconsitent wildcard matching behavior in ash [[
- *"/overlay"* is correct for bash [[, and works during an install in ash, but during a boot script in ash results in attempted filename completion and gives an operand error - "*/overlay/*" works in ash [[, but shouldn't, since it doesn't work in bash [[ - the inconsitent ash behavior in install vs. boot script is likely due to the operating directory of the script in each scenario
This commit is contained in:
@@ -13,7 +13,7 @@ for APP in $(grep -v '^#' $LIST); do
|
||||
/system/*) ;;
|
||||
*) PREFIX=/system;;
|
||||
esac
|
||||
HIDEPATH=$MODPATH$PREFIX/$APP
|
||||
HIDEPATH=$MODPATH$PREFIX$APP
|
||||
if [ -d "$APP" ]; then
|
||||
mkdir -p $HIDEPATH
|
||||
if [ "$KSU" = "true" -o "$APATCH" = "true" ]; then
|
||||
@@ -29,27 +29,29 @@ for APP in $(grep -v '^#' $LIST); do
|
||||
touch $HIDEPATH
|
||||
fi
|
||||
fi
|
||||
if [[ "$APP" = *"/overlay/"* ]]; then
|
||||
CFG=$(echo $APP | grep -oE '.*/overlay')/config/config.xml
|
||||
if [ -f "$CFG" ]; then
|
||||
if [ -d "$APP" ]; then
|
||||
APK=$(readlink -f $APP/*.apk);
|
||||
elif [[ "$APP" = *".apk" ]]; then
|
||||
APK=$(readlink -f $APP);
|
||||
fi
|
||||
if [ -s "$APK" ]; then
|
||||
PKGNAME=$(unzip -p $APK AndroidManifest.xml | tr -d '\0' | grep -oE '[[:alnum:].-_]+\*http' | cut -d\* -f1)
|
||||
if [ "$PKGNAME" ] && grep -q "overlay package=\"$PKGNAME" $CFG; then
|
||||
HIDECFG=$MODPATH$PREFIX$CFG
|
||||
if [ ! -f "$HIDECFG" ]; then
|
||||
mkdir -p $(dirname $HIDECFG)
|
||||
cp -af $CFG $HIDECFG
|
||||
case $APP in
|
||||
*/overlay/*)
|
||||
CFG=$(echo $APP | grep -oE '.*/overlay')/config/config.xml
|
||||
if [ -f "$CFG" ]; then
|
||||
if [ -d "$APP" ]; then
|
||||
APK=$(readlink -f $APP/*.apk);
|
||||
elif [[ "$APP" = *".apk" ]]; then
|
||||
APK=$(readlink -f $APP);
|
||||
fi
|
||||
if [ -s "$APK" ]; then
|
||||
PKGNAME=$(unzip -p $APK AndroidManifest.xml | tr -d '\0' | grep -oE '[[:alnum:].-_]+\*http' | cut -d\* -f1)
|
||||
if [ "$PKGNAME" ] && grep -q "overlay package=\"$PKGNAME" $CFG; then
|
||||
HIDECFG=$MODPATH$PREFIX$CFG
|
||||
if [ ! -f "$HIDECFG" ]; then
|
||||
mkdir -p $(dirname $HIDECFG)
|
||||
cp -af $CFG $HIDECFG
|
||||
fi
|
||||
sed -i 's;<overlay \(package="'"$PKGNAME"'".*\) />;<!-- overlay \1 -->;' $HIDECFG
|
||||
fi
|
||||
sed -i 's;<overlay \(package="'"$PKGNAME"'".*\) />;<!-- overlay \1 -->;' $HIDECFG
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
if [[ -d "$APP" || "$APP" = *".apk" ]]; then
|
||||
ui_print "! $(basename $APP .apk) ROM app disabled, please uninstall any user app versions/updates after next reboot"
|
||||
[ "$HIDECFG" ] && ui_print "! + $PKGNAME entry commented out in copied overlay config"
|
||||
|
||||
Reference in New Issue
Block a user