From 8659d83687bbbb1ab0b966dade37b29e086f58ce Mon Sep 17 00:00:00 2001 From: Christopher Date: Mon, 15 May 2023 15:41:34 -0500 Subject: [PATCH] Update menu.sh (#107) Fixed text typo in backup menu. --- functions/menu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/menu.sh b/functions/menu.sh index 7d25463e..d4e1ece2 100644 --- a/functions/menu.sh +++ b/functions/menu.sh @@ -20,7 +20,7 @@ backup_selection(){ exit ;; 1) - read -rt 120 -p "What is the maximun number of backups you would like?: " number_of_backups || { echo -e "${red}\nFailed to make a selection in time${reset}" ; exit; } + read -rt 120 -p "What is the maximum number of backups you would like?: " number_of_backups || { echo -e "${red}\nFailed to make a selection in time${reset}" ; exit; } if ! [[ $number_of_backups =~ ^[0-9]+$ ]]; then echo -e "${red}Error: The input must be an interger\n${blue}\"""$number_of_backups""\"${red} is not an interger${reset}" >&2 exit