mirror of
https://github.com/akuker/RASCSI.git
synced 2025-08-05 17:25:47 +00:00
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:
committed by
Daniel Markstedt
parent
507bfc19c1
commit
ddfd40d5c9
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user