Skip to content

Commit

Permalink
Fix bashism in docker-setup (#476)
Browse files Browse the repository at this point in the history
Co-authored-by: nnyyxxxx <[email protected]>
  • Loading branch information
nnyyxxxx and nnyyxxxx authored Sep 19, 2024
1 parent 903c915 commit 1175f7d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tabs/system-setup/6-docker-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ choose_installation() {
printf "%b\n" "1. ${YELLOW}Docker${RC}"
printf "%b\n" "2. ${YELLOW}Docker Compose${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
1) INSTALL_DOCKER=1; INSTALL_COMPOSE=0 ;;
Expand Down

0 comments on commit 1175f7d

Please sign in to comment.