create: Clarify numbers > digits/numerals

This commit is contained in:
tschettervictor
2025-01-24 07:52:22 -07:00
committed by GitHub
parent b3ff3efed9
commit 8425524959

View File

@@ -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
}