From cf8a33fec0cc15d396ab42e5783c0155e6ca658d Mon Sep 17 00:00:00 2001 From: osconlab <129285747+osconlab@users.noreply.github.com> Date: Sun, 2 Apr 2023 21:29:00 +0200 Subject: [PATCH] Update default.sh --- default.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.sh b/default.sh index 0abdb5f..d513cbb 100644 --- a/default.sh +++ b/default.sh @@ -1,7 +1,7 @@ apt update && sudo apt upgrade -y apt install htop curl -y 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;;