This commit is contained in:
Heavybullets8 2022-07-26 16:54:46 -06:00
parent b286877af0
commit 366fbb0898

View File

@ -101,7 +101,7 @@ menu(){
echo echo
read -rt 600 -p "Please type the number associated with the flag above: " current_selection read -rt 600 -p "Please type the number associated with the flag above: " current_selection
for i in "${current_selection[@]}" for i in "${update_selection[@]}"
do do
echo "$i" echo "$i"
done done
@ -133,7 +133,7 @@ menu(){
elif [[ $current_selection == 8 ]]; then elif [[ $current_selection == 8 ]]; then
update_selection+=("-p") update_selection+=("-p")
else else
echo "$current_selection was not an option, try again" echo "$current_selection was not an option, try again" && sleep 5 && continue
fi fi
done done
;; ;;