mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 18:55:39 +08:00
Set svn:eol-style. Cleaned up set-eol-style.sh a bit.
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
using libsecondlife;
|
||||
|
||||
namespace OpenSim.Framework
|
||||
{
|
||||
public struct AssetRequest
|
||||
{
|
||||
public LLUUID AssetID;
|
||||
public bool IsTexture;
|
||||
}
|
||||
using libsecondlife;
|
||||
|
||||
namespace OpenSim.Framework
|
||||
{
|
||||
public struct AssetRequest
|
||||
{
|
||||
public LLUUID AssetID;
|
||||
public bool IsTexture;
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,15 @@
|
||||
#!/bin/sh
|
||||
|
||||
find OpenSim -name \*\.cs | xargs perl -pi -e 's/\r//'
|
||||
find OpenSim -name \*\.cs | xargs svn propset svn:eol-style native
|
||||
set_eol_style()
|
||||
{
|
||||
for file in $*; do
|
||||
svn_status=`svn propget svn:eol-style $file`
|
||||
if [ -z "${svn_status}" -o "${svn_status}" != "native" ]; then
|
||||
svn propset svn:eol-style native $file
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
for file in `find OpenSim -name \*\.cs`; do
|
||||
set_eol_style $file
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user