Daniel Gibbs 10 vuotta sitten
vanhempi
commit
aafc9d51fd
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      functions/fn_install_serverdir

+ 1 - 1
functions/fn_install_serverdir

@@ -15,7 +15,7 @@ if [ -d "${filesdir}" ]; then
 fi
 if [ -z "${autoinstall}" ]; then	
 	while true; do
-		read -p "Continue [y/N]" yn
+		read -e -i "y" -p "Continue [y/N]" yn
 		case $yn in
 		[Yy]* ) break;;
 		[Nn]* ) exit;;