From e25b86e5617b2c50ca8b5b3e2f8c19bdef5d8ba5 Mon Sep 17 00:00:00 2001 From: Mike Grundy Date: Mon, 12 Sep 2016 11:48:24 -0400 Subject: SERVER-25737 ESLint and clang-format "lint-patch" modes can miss files with uppercase characters --- buildscripts/clang_format.py | 2 +- buildscripts/eslint.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/buildscripts/clang_format.py b/buildscripts/clang_format.py index ce6ea8538e8..f25f0941736 100755 --- a/buildscripts/clang_format.py +++ b/buildscripts/clang_format.py @@ -648,7 +648,7 @@ def get_files_to_check_from_patch(patches): candidates = [] # Get a list of candidate_files - check = re.compile(r"^diff --git a\/([a-z\/\.\-_0-9]+) b\/[a-z\/\.\-_0-9]+") + check = re.compile(r"^diff --git a\/([\w\/\.\-]+) b\/[\w\/\.\-]+") lines = [] for patch in patches: diff --git a/buildscripts/eslint.py b/buildscripts/eslint.py index f91423c1255..06562f2f8da 100755 --- a/buildscripts/eslint.py +++ b/buildscripts/eslint.py @@ -434,7 +434,7 @@ def get_files_to_check_from_patch(patches): candidates = [] # Get a list of candidate_files - check = re.compile(r"^diff --git a\/([a-z\/\.\-_0-9]+) b\/[a-z\/\.\-_0-9]+") + check = re.compile(r"^diff --git a\/([\w\/\.\-]+) b\/[\w\/\.\-]+") lines = [] for patch in patches: -- cgit v1.2.1