mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 18:55:39 +08:00
9 lines
250 B
Bash
Executable File
9 lines
250 B
Bash
Executable File
#!/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
|
|
|