From 2a58a8c847afb0242f8c5d5c570833618d9c242a Mon Sep 17 00:00:00 2001 From: John Whelan Date: Tue, 18 Jul 2023 15:48:03 -0700 Subject: [PATCH] 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. --- setup_linux.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup_linux.sh b/setup_linux.sh index 47bb632e..7aafc081 100755 --- a/setup_linux.sh +++ b/setup_linux.sh @@ -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...;