remove stderr from adb devices call

This commit is contained in:
MeexReay 2025-05-21 23:42:08 +03:00
parent 90e953c9cd
commit 7a33e5027c

View File

@ -10,7 +10,7 @@ has_fastboot() {
} }
has_recovery() { has_recovery() {
pmbootstrap chroot adb devices | grep -q "recovery" pmbootstrap chroot adb devices 2> /dev/null | grep -q "recovery"
return $? return $?
} }