summaryrefslogtreecommitdiff
path: root/.tools/newlines.sh
blob: c7a59bf26b5ad4da02e7407a8a495aa1cbe39f7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash

source ./.tools/init.sh

aptget_update
aptget_install dos2unix git-core

export LOG1="newlines.log"

rm ${LOG1}

find -H . -type f -name "*.xml" -exec dos2unix {} \; >${LOG1}

export RES=$(git diff --name-only)
if [[ -n "${RES}" ]]; then
    echo "Wrong new lines detected in xml files:"
    git diff --name-only
    exit 1
fi

find -H . -type f -name "*.tmx" -exec dos2unix {} \; >>${LOG1}

export RES=$(git diff --name-only)
if [[ -n "${RES}" ]]; then
    echo "Wrong new lines detected in tmx files:"
    git diff --name-only
    exit 1
fi


find -H . -type f -name "*.md" -exec dos2unix {} \; >>${LOG1}

export RES=$(git diff --name-only)
if [[ -n "${RES}" ]]; then
    echo "Wrong new lines detected in md files:"
    git diff --name-only
    exit 1
fi


find -H . -type f -name "*.conf" -exec dos2unix {} \; >>${LOG1}

export RES=$(git diff --name-only)
if [[ -n "${RES}" ]]; then
    echo "Wrong new lines detected in conf files:"
    git diff --name-only
    exit 1
fi