aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/set-eol-style.sh
diff options
context:
space:
mode:
authorJeff Ames2008-01-26 04:26:12 +0000
committerJeff Ames2008-01-26 04:26:12 +0000
commit582d0a29d566b4d423e0e52a36af34a63f03f0bc (patch)
treeb6be2896fc582d787410f7690d626f517e66ab23 /set-eol-style.sh
parent* Add statistics reference to the opensim app and the example app (diff)
downloadopensim-SC_OLD-582d0a29d566b4d423e0e52a36af34a63f03f0bc.zip
opensim-SC_OLD-582d0a29d566b4d423e0e52a36af34a63f03f0bc.tar.gz
opensim-SC_OLD-582d0a29d566b4d423e0e52a36af34a63f03f0bc.tar.bz2
opensim-SC_OLD-582d0a29d566b4d423e0e52a36af34a63f03f0bc.tar.xz
Set svn properties.
Diffstat (limited to 'set-eol-style.sh')
-rwxr-xr-xset-eol-style.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/set-eol-style.sh b/set-eol-style.sh
deleted file mode 100755
index 281769e..0000000
--- a/set-eol-style.sh
+++ /dev/null
@@ -1,18 +0,0 @@
1#!/bin/sh
2
3set_eol_style()
4{
5 IFS=$'\n'
6 for file in `find . -iname \*\.$1`; do
7 eolstyle=`svn propget svn:eol-style $file`
8 if [ -z "${eolstyle}" -o "${eolstyle}" != "native" ]; then
9 svn propset svn:eol-style native $file
10 fi
11 done
12}
13
14EXTENSIONS="cs ini example txt sql xml"
15
16for ext in ${EXTENSIONS}; do
17 set_eol_style $ext
18done