add a script for fixing line endings (at least from linux)

0.6.3-post-fixes
Sean Dague 2009-02-09 19:59:08 +00:00
parent f3926a15a6
commit 6bc9e0614c
1 changed files with 8 additions and 0 deletions

8
fixsvnbits.sh Executable file
View File

@ -0,0 +1,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