From 366fbb089821dd36e109ca544e6aabba03e02965 Mon Sep 17 00:00:00 2001 From: Heavybullets8 Date: Tue, 26 Jul 2022 16:54:46 -0600 Subject: [PATCH] fix --- functions/menu.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/menu.sh b/functions/menu.sh index 35ae5f4d..304c2cd1 100644 --- a/functions/menu.sh +++ b/functions/menu.sh @@ -101,7 +101,7 @@ menu(){ echo 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 echo "$i" done @@ -133,7 +133,7 @@ menu(){ elif [[ $current_selection == 8 ]]; then update_selection+=("-p") else - echo "$current_selection was not an option, try again" + echo "$current_selection was not an option, try again" && sleep 5 && continue fi done ;;