This commit is contained in:
Heavybullets8 2022-07-26 23:25:08 -06:00
parent 9f20f36d29
commit 20ed6d7bab

View File

@ -115,7 +115,8 @@ case $selection in
echo "7) -s | sync catalog" echo "7) -s | sync catalog"
echo "8) -p | Prune unused/old docker images" echo "8) -p | Prune unused/old docker images"
echo echo
echo "0) Done making selections, proceed with update" echo "99) Remove Update Options, Restart"
echo "00) Done making selections, proceed with update"
echo echo
echo "Current Choices" echo "Current Choices"
echo "---------------" echo "---------------"
@ -124,7 +125,7 @@ case $selection in
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
case $current_selection in case $current_selection in
0) 00)
clear -x clear -x
echo "Running \"bash heavy_script.sh ${update_selection[*]}\"" echo "Running \"bash heavy_script.sh ${update_selection[*]}\""
echo echo
@ -180,6 +181,7 @@ case $selection in
echo "$i removed" echo "$i removed"
((count++)) ((count++))
done done
sleep 5
continue continue
;; ;;
*) *)