diff options
author | Jeff Ames | 2007-12-15 02:36:31 +0000 |
---|---|---|
committer | Jeff Ames | 2007-12-15 02:36:31 +0000 |
commit | 53b5fa49745cd5928efac8e77924c99172114396 (patch) | |
tree | 144981ea1bc28892aa04c666d617ca828e810f49 /set-eol-style.sh | |
parent | update to OpenSimExport to test loading of a Region (diff) | |
download | opensim-SC_OLD-53b5fa49745cd5928efac8e77924c99172114396.zip opensim-SC_OLD-53b5fa49745cd5928efac8e77924c99172114396.tar.gz opensim-SC_OLD-53b5fa49745cd5928efac8e77924c99172114396.tar.bz2 opensim-SC_OLD-53b5fa49745cd5928efac8e77924c99172114396.tar.xz |
Set svn:eol-style. Cleaned up set-eol-style.sh a bit.
Diffstat (limited to 'set-eol-style.sh')
-rwxr-xr-x | set-eol-style.sh | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/set-eol-style.sh b/set-eol-style.sh index f47580d..30c3e0f 100755 --- a/set-eol-style.sh +++ b/set-eol-style.sh | |||
@@ -1,5 +1,15 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | find OpenSim -name \*\.cs | xargs perl -pi -e 's/\r//' | 3 | set_eol_style() |
4 | find OpenSim -name \*\.cs | xargs svn propset svn:eol-style native | 4 | { |
5 | for file in $*; do | ||
6 | svn_status=`svn propget svn:eol-style $file` | ||
7 | if [ -z "${svn_status}" -o "${svn_status}" != "native" ]; then | ||
8 | svn propset svn:eol-style native $file | ||
9 | fi | ||
10 | done | ||
11 | } | ||
5 | 12 | ||
13 | for file in `find OpenSim -name \*\.cs`; do | ||
14 | set_eol_style $file | ||
15 | done | ||