From 8425524959461d695388b27fb79bbe2dc8714513 Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Fri, 24 Jan 2025 07:52:22 -0700 Subject: [PATCH] create: Clarify numbers > digits/numerals --- usr/local/share/bastille/create.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/share/bastille/create.sh b/usr/local/share/bastille/create.sh index 9160835f..50383782 100644 --- a/usr/local/share/bastille/create.sh +++ b/usr/local/share/bastille/create.sh @@ -69,7 +69,7 @@ validate_name() { elif [ "${NAME_VERIFY}" != "${NAME_SANITY}" ]; then error_exit "Container names may not contain special characters!" elif echo "${NAME_VERIFY}" | grep -qE '^[0-9]+$'; then - error_exit "Container names may not contain only numbers." + error_exit "Container names may not contain only digits/numerals." fi }