summaryrefslogtreecommitdiff
path: root/.tools/jobs/newlines.sh
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-03-01 21:37:31 +0300
committerAndrei Karas <akaras@inbox.ru>2019-03-01 21:50:37 +0300
commitb426d92dcbb6e760ed20cc02b93fb180e3c950a7 (patch)
tree03b6b454807ac9e9f3ec92daa581966c88533324 /.tools/jobs/newlines.sh
parent65d6304993a13247311f6c7d98debcb9964b1134 (diff)
downloadserverdata-b426d92dcbb6e760ed20cc02b93fb180e3c950a7.tar.gz
serverdata-b426d92dcbb6e760ed20cc02b93fb180e3c950a7.tar.bz2
serverdata-b426d92dcbb6e760ed20cc02b93fb180e3c950a7.tar.xz
serverdata-b426d92dcbb6e760ed20cc02b93fb180e3c950a7.zip
Add ci checks for bad new lines or trailing white spacescitest
Diffstat (limited to '.tools/jobs/newlines.sh')
-rwxr-xr-x.tools/jobs/newlines.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/.tools/jobs/newlines.sh b/.tools/jobs/newlines.sh
new file mode 100755
index 00000000..23309f70
--- /dev/null
+++ b/.tools/jobs/newlines.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+find -H . -type f -name "*.txt" -o -name "*.conf" -exec dos2unix {} \;
+
+export RES=$(git diff --name-only)
+if [[ -n "${RES}" ]]; then
+ echo "Wrong new lines detected in files:"
+ git diff --name-only
+ exit 1
+fi