ignore various files in commit checker

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <ppzgs1@gmail.com>
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
(Merged from https://github.com/openssl/openssl/pull/24845)
This commit is contained in:
Neil Horman 2024-07-10 14:04:46 -04:00
parent ad33d62396
commit 861e1f450c

View File

@ -20,7 +20,16 @@ EXCLUDED_FILE_REGEX=("\.pod" \
"\.pm" \
"\.t" \
"\.yml" \
"\.sh")
"\.sh" \
"\.cnf" \
"\.conf" \
"\.info" \
"\.md" \
"\.S" \
"\.pem" \
"\.txt" \
"\.dat" \
"Configure")
# Exit code for the script
EXIT_CODE=0