Skip to content

Commit

Permalink
scripts/action: do NOT sleep on KSU_NEXT
Browse files Browse the repository at this point in the history
ksu next does NOT auto close
  • Loading branch information
backslashxx committed Feb 10, 2025
1 parent eb9aca6 commit 74b9e02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/action.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bindhosts_sh() {
# print exec time
echo "[+] execution time: $(( $(date +%s) - start_time ))s"
# 2s sleep on APatch on KernelSU
if [ -z "$MMRL" ] && { [ "$KSU" = "true" ] || [ "$APATCH" = "true" ]; }; then
if [ -z "$MMRL" ] && [ -z "$KSU_NEXT" ] && { [ "$KSU" = "true" ] || [ "$APATCH" = "true" ]; }; then
sleep 2
fi
# exit clean
Expand Down

0 comments on commit 74b9e02

Please sign in to comment.