diff --git a/default.sh b/default.sh index cb346b5..f0105be 100644 --- a/default.sh +++ b/default.sh @@ -3,7 +3,7 @@ apt update && sudo apt upgrade -y apt install htop curl -y chmod +x ./docker.sh while true; do - read -p "Do you wish to install docker: ?" yn + read -p "Do you wish to install docker ?:" yn case $yn in [Yy]* ) ./docker.sh; break;; [Nn]* ) exit;;