Skip to content

Commit

Permalink
Updating devbuild.sh for MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Natalie Perlin authored and Natalie Perlin committed Dec 27, 2024
1 parent 31bffa7 commit 7b3de5f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions devbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -358,11 +358,10 @@ else
printf "[C]ontinue building in the existing directory\n"
printf "[Q]uit this build script\n"
read -p "Choose an option (R/C/Q):" choice
echo "Your choice is : ${choice}"
case ${choice} in
[Rr]* ) echo "Remove the build dir"; rm -rf ${BUILD_DIR}; break ;;
[Cc]* ) echo "Continue ..."; break ;;
[Qq]* ) echo "Exit the build"; exit ;;
[Rr]* ) rm -rf ${BUILD_DIR}; break ;;
[Cc]* ) break ;;
[Qq]* ) exit ;;
* ) printf "Invalid option selected.\n" ;;
esac
done
Expand Down

0 comments on commit 7b3de5f

Please sign in to comment.