]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
ignore various files in commit checker
authorNeil Horman <nhorman@openssl.org>
Wed, 10 Jul 2024 18:04:46 +0000 (14:04 -0400)
committerDr. David von Oheimb <dev@ddvo.net>
Sat, 26 Oct 2024 17:11:59 +0000 (19:11 +0200)
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)

(cherry picked from commit 861e1f450c808bdf675bbf0d3e17303a3f16d06c)

util/check-format-commit.sh

index 7e712dc48cf65511fee15a7ea1691f5a6d014124..835645131b6cd4fd7fcca1b31a94d9142b2a9ef7 100755 (executable)
@@ -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