summaryrefslogblamecommitdiff
path: root/.tools/newlines.sh
blob: 32beda0d21f166db89c32b157e04d8c7a608c815 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                
         








                                                             
             







                                                              
             








                                                             
             








                                                               
             
  


             
#!/bin/bash

source ./.tools/init.sh

aptget_update
aptget_install dos2unix git-core

export LOG1="newlines.log"
SIGNAL=0;

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
    SIGNAL=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
    SIGNAL=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
    SIGNAL=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
    SIGNAL=1;
fi

exit $SIGNAL;