Do not check for DOS line endings in log files.

pull/5542/head
Jussi Pakkanen 5 years ago
parent d1dd6df37b
commit 80856884cc
  1. 2
      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)

Loading…
Cancel
Save