Update default.sh

This commit is contained in:
osconlab 2023-04-02 21:29:00 +02:00
parent e830aef379
commit cf8a33fec0
1 changed files with 1 additions and 1 deletions

View File

@ -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;;