adb-permissions.bash: exit if adb not found (resolves TODO)

This commit is contained in:
Aminda Suomalainen 2025-03-14 12:39:49 +02:00
parent 34cfb4b3bb
commit 93dac934fe
Signed by: Mikaela
GPG Key ID: 99392F62BAE30723

View File

@ -8,7 +8,10 @@
set -x set -x
# TODO: if adb is not installed or in $PATH, exit? if ! hash adb 2> /dev/null; then
echo "Error: adb not found in $PATH" 1>&2
exit 1
fi
# Remember, # Remember,
echo "In case of trouble check Android System Settings, Connected devices, USB mode. It should be data transfer for adb USB debugging to take effect." echo "In case of trouble check Android System Settings, Connected devices, USB mode. It should be data transfer for adb USB debugging to take effect."