This commit is contained in:
Jim Wu 2020-03-23 13:10:32 +08:00
parent 6d742ac749
commit 5ef2b67e11
2 changed files with 2 additions and 2 deletions

View File

@ -215,7 +215,7 @@ if [[ "${IS64BIT}" == false ]]; then
rm -rf "${MODPATH}/system/lib64"
fi
if [[ "$(pm path org.meowcat.edxposed.manager)" == "" || "$(pm path de.robv.android.xposed.installer)" == "" ]]; then
if [[ "$(pm path org.meowcat.edxposed.manager)" == "" && "$(pm path de.robv.android.xposed.installer)" == "" ]]; then
NO_MANAGER=true
fi

View File

@ -152,7 +152,7 @@ cp -f "/system/bin/app_process32" "${MODDIR}/system/bin/app_process32"
[[ -f "/system/bin/app_process64" ]] && cp -f "/system/bin/app_process64" "${MODDIR}/system/bin/app_process64"
# install stub if manager not installed
if [[ "$(pm path org.meowcat.edxposed.manager)" == "" || "$(pm path de.robv.android.xposed.installer)" == "" ]]; then
if [[ "$(pm path org.meowcat.edxposed.manager)" == "" && "$(pm path de.robv.android.xposed.installer)" == "" ]]; then
NO_MANAGER=true
fi
if [[ ${NO_MANAGER} == true ]]; then