mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-24 09:10:22 -07:00
Fix and create code-smell test for line endings.
This commit is contained in:
parent
66a0b1475f
commit
469c4a106b
3 changed files with 24 additions and 11 deletions
12
test/sanity/code-smell/line-endings.sh
Executable file
12
test/sanity/code-smell/line-endings.sh
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue