Fix typo (choice 0) in easyinstall.sh (#1372)

* Fix typo (choice 0) in easyinstall.sh

Co-authored-by: Frank Danapfel
This commit is contained in:
Uwe Seimet 2023-11-17 13:00:03 +01:00 committed by GitHub
parent abedf4ed23
commit e5b99d4fa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1507,8 +1507,8 @@ function runChoice() {
function readChoice() {
choice=-1
until [ $choice -ge "0" ] && ([ $choice -eq "99" ] || [ $choice -le "17" ]) ; do
echo -n "Enter your choice (0-17) or CTRL-C to exit: "
until [ $choice -ge "1" ] && ([ $choice -eq "99" ] || [ $choice -le "17" ]) ; do
echo -n "Enter your choice (1-17) or CTRL-C to exit: "
read -r choice
done