diff options
author | Neil Horman <nhorman@openssl.org> | 2024-07-10 20:04:46 +0200 |
---|---|---|
committer | Neil Horman <nhorman@openssl.org> | 2024-07-12 05:13:47 +0200 |
commit | 861e1f450c808bdf675bbf0d3e17303a3f16d06c (patch) | |
tree | afd16a02462e1f280d418cea2d2f99cfac875051 | |
parent | EVP_DigestUpdate(): Check if ctx->update is set (diff) | |
download | openssl-861e1f450c808bdf675bbf0d3e17303a3f16d06c.tar.xz openssl-861e1f450c808bdf675bbf0d3e17303a3f16d06c.zip |
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)
-rwxr-xr-x | util/check-format-commit.sh | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/util/check-format-commit.sh b/util/check-format-commit.sh index 7e712dc48c..835645131b 100755 --- a/util/check-format-commit.sh +++ b/util/check-format-commit.sh @@ -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 |