aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/set-eol-style.sh
blob: af8887bb85376b09046f27dce06ed6380aa5b24d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

set_eol_style()
{
    IFS=$'\n'
    for file in `find . -iname \*\.$1`; do
        eolstyle=`svn propget svn:eol-style $file`
        if [ -z "${eolstyle}" -o "${eolstyle}" != "native" ]; then
            svn propset svn:eol-style native $file
        fi
    done
}

EXTENSIONS="cs ini example txt sql"

for ext in ${EXTENSIONS}; do
    set_eol_style $ext
done