spelling: numeric

This commit is contained in:
Josh Soref 2020-06-20 23:56:56 -04:00 committed by GitHub
parent 566cd3d557
commit d542dc4d76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View file

@ -115,9 +115,9 @@ ValidateInput()
# Check if we need to get the name of the branch # # Check if we need to get the name of the branch #
################################################## ##################################################
if [[ "$IMAGE_VERSION" != "latest" ]]; then if [[ "$IMAGE_VERSION" != "latest" ]]; then
################################### ##################################
# Remove non alpha-numberic chars # # Remove non alpha-numeric chars #
################################### ##################################
IMAGE_VERSION=$(echo "$IMAGE_VERSION" | tr -cd '[:alnum:]') IMAGE_VERSION=$(echo "$IMAGE_VERSION" | tr -cd '[:alnum:]')
else else
############################################# #############################################

View file

@ -120,9 +120,9 @@ ValidateInput()
exit 1 exit 1
fi fi
################################### ##################################
# Remove non alpha-numberic chars # # Remove non alpha-numeric chars #
################################### ##################################
BRANCH_NAME=$(echo "$BRANCH_NAME" | tr -cd '[:alnum:]') BRANCH_NAME=$(echo "$BRANCH_NAME" | tr -cd '[:alnum:]')
############################################ ############################################