aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fixsvnbits.sh
blob: 6f34506be85507e6d887351ec6118c02d391f9a4 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

# This can be used to fix up the svn bits to keep line endings sane
# between platforms.

find OpenSim -type f | grep -v '.svn' | xargs perl -pi -e 's/\r//g'
find OpenSim -type f | grep -v '.svn' | xargs svn propset svn:eol-style native