Fix bashism in docker-setup (#476)

Co-authored-by: nnyyxxxx <nnyyxxxx@users.noreply.github.com>
This commit is contained in:
Nyx 2024-09-18 20:02:52 -04:00 committed by GitHub
parent 903c915260
commit 1175f7d236
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,8 @@ choose_installation() {
printf "%b\n" "1. ${YELLOW}Docker${RC}" printf "%b\n" "1. ${YELLOW}Docker${RC}"
printf "%b\n" "2. ${YELLOW}Docker Compose${RC}" printf "%b\n" "2. ${YELLOW}Docker Compose${RC}"
printf "%b\n" "3. ${YELLOW}Both${RC}" printf "%b\n" "3. ${YELLOW}Both${RC}"
read -p "Enter your choice [1-3]: " CHOICE printf "Enter your choice [1-3]: "
read -r CHOICE
case "$CHOICE" in case "$CHOICE" in
1) INSTALL_DOCKER=1; INSTALL_COMPOSE=0 ;; 1) INSTALL_DOCKER=1; INSTALL_COMPOSE=0 ;;