abortC does not exist (#530)

* abortC does not exist

* Update post-fs-data.sh
This commit is contained in:
Howard Wu 2021-05-02 09:51:44 +08:00 committed by GitHub
parent 476bd8f7c2
commit cf59bfbac9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -64,7 +64,6 @@ fi
# If logcat client is kicked out by klogd server, we'll restart it. # If logcat client is kicked out by klogd server, we'll restart it.
# However, if it is killed manually or by LSPosed Manager, we'll exit. # However, if it is killed manually or by LSPosed Manager, we'll exit.
# Refer to https://github.com/ElderDrivers/LSPosed/pull/575 for more information.
loop_logcat() { loop_logcat() {
while true; do while true; do
logcat $* logcat $*

View File

@ -23,7 +23,7 @@ check_magisk_version() {
if [ "$MAGISK_VER_CODE" -lt 21000 ]; then if [ "$MAGISK_VER_CODE" -lt 21000 ]; then
ui_print "*********************************************************" ui_print "*********************************************************"
ui_print "! Please install Magisk v21+" ui_print "! Please install Magisk v21+"
abortC "*********************************************************" abort "*********************************************************"
fi fi
} }
@ -32,7 +32,7 @@ require_new_android() {
ui_print "! Unsupported Android version ${1} (below Oreo MR1)" ui_print "! Unsupported Android version ${1} (below Oreo MR1)"
ui_print "! Learn more from our GitHub Wiki" ui_print "! Learn more from our GitHub Wiki"
[ "$BOOTMODE" == "true" ] && am start -a android.intent.action.VIEW -d https://github.com/LSPosed/LSPosed/wiki/Available-Android-versions [ "$BOOTMODE" == "true" ] && am start -a android.intent.action.VIEW -d https://github.com/LSPosed/LSPosed/wiki/Available-Android-versions
abortC "*********************************************************" abort "*********************************************************"
} }
check_android_version() { check_android_version() {