summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Horman <nhorman@openssl.org>2024-07-10 20:04:46 +0200
committerNeil Horman <nhorman@openssl.org>2024-07-12 05:13:47 +0200
commit861e1f450c808bdf675bbf0d3e17303a3f16d06c (patch)
treeafd16a02462e1f280d418cea2d2f99cfac875051
parentEVP_DigestUpdate(): Check if ctx->update is set (diff)
downloadopenssl-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-xutil/check-format-commit.sh11
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