Fix and create code-smell test for line endings.

This commit is contained in:
Matt Clay 2016-11-03 14:33:17 -07:00
parent 66a0b1475f
commit 469c4a106b
3 changed files with 24 additions and 11 deletions

View file

@ -0,0 +1,12 @@
#!/bin/sh
grep -RIPl '\r' . 2>/dev/null \
--exclude-dir .git \
| grep -v -F \
-e './test/integration/targets/win_regmerge/templates/win_line_ending.j2'
if [ $? -ne 1 ]; then
printf 'One or more file(s) listed above have invalid line endings.\n'
printf 'Make sure all files use "\\n" for line endings instead of "\\r\\n".\n'
exit 1
fi