Updated setup_macos.sh to ask if Android SDK has been installed - if it hasn't then skip those checks.

Also updated setup_linux.sh to fix a minor bug with the check done there.
This commit is contained in:
John Whelan 2023-07-18 15:48:03 -07:00
parent 9077161b14
commit 2a58a8c847

View File

@ -12,8 +12,9 @@ if [ "$(lsb_release -d | grep -qEi 'debian|buntu|mint')" ]; then
echo Not a supported Linux
exit 1
fi
read -p "Did you install Android SDK? Y/N " response
while true; do
read -p "Did you install Android SDK? Y/N " response
case $response in
[yY] ) echo Checking android setup...;