From df6600ee1546e29b99669117a17a80acfe6c6f3d Mon Sep 17 00:00:00 2001 From: Neil Horman Date: Wed, 10 Jul 2024 14:04:46 -0400 Subject: [PATCH] ignore various files in commit checker Reviewed-by: Tomas Mraz Reviewed-by: Paul Dale Reviewed-by: Tom Cosgrove (Merged from https://github.com/openssl/openssl/pull/24845) (cherry picked from commit 861e1f450c808bdf675bbf0d3e17303a3f16d06c) --- util/check-format-commit.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/util/check-format-commit.sh b/util/check-format-commit.sh index 7e712dc48cf..835645131b6 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 -- 2.47.2