String consistency

This commit is contained in:
Max 2026-02-28 22:48:00 +01:00
parent 18a32a323d
commit 96140ee47d
2 changed files with 2 additions and 2 deletions

View file

@ -99,7 +99,7 @@ Containers with updates available:
03) whoogle-search
Choose what containers to update:
Enter number(s) separated by comma or ranges (e.g. 1-2,4-5), [a] for all - [q] to quit: 1-2
Enter number(s) separated by comma or range(s) (e.g. 1-2,4-5), [a] for all - [q] to quit: 1-2
```
Then it proceeds to run `pull` and `up -d` on every container with updates.

View file

@ -229,7 +229,7 @@ self_update() {
choosecontainers() {
while [[ -z "${ChoiceClean:-}" ]]; do
read -r -p "Enter number(s) separated by comma or ranges (e.g. 1-2,4-5), [a] for all - [q] to quit: " Choice
read -r -p "Enter number(s) separated by comma or range(s) (e.g. 1-2,4-5), [a] for all - [q] to quit: " Choice
if [[ "$Choice" =~ [qQnN] ]]; then
[[ -n "${BackupForDays:-}" ]] && remove_backups
exit 0