aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrun_project_tests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 3b62b5c..585a700 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -779,6 +779,8 @@ def check_format():
for (root, _, files) in os.walk('.'):
if '.dub' in root: # external deps are here
continue
+ if 'meson-logs' in root or 'meson-private' in root:
+ continue
for fname in files:
if os.path.splitext(fname)[1].lower() in check_suffixes:
bn = os.path.basename(fname)