diff options
author | Maximilian Berger <maxberger@apache.org> | 2008-02-13 12:03:30 +0000 |
---|---|---|
committer | Maximilian Berger <maxberger@apache.org> | 2008-02-13 12:03:30 +0000 |
commit | f265c0e1c1566a2a3afeb0fa2641cf3a81598da3 (patch) | |
tree | 232af298a07db882d1cf2fa41a62e698ef1dd664 /fixsvnprops.sh | |
parent | 575be874323e7ae9fc5a37cc4501a203bde0e85a (diff) | |
download | xmlgraphics-fop-f265c0e1c1566a2a3afeb0fa2641cf3a81598da3.tar.gz xmlgraphics-fop-f265c0e1c1566a2a3afeb0fa2641cf3a81598da3.zip |
Ensured all SVN properties are set equally
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@627367 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'fixsvnprops.sh')
-rwxr-xr-x | fixsvnprops.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/fixsvnprops.sh b/fixsvnprops.sh index 6e8181df7..c5688a238 100755 --- a/fixsvnprops.sh +++ b/fixsvnprops.sh @@ -1,4 +1,7 @@ #!/bin/sh -find . -name \*.java -or -name \*.xml -exec svn ps svn:keywords "Revision Id" '{}' \; -find . -name \*.java -or -name \*.xml -exec svn ps svn:eol-style native '{}' \; +find . -name \*.java -exec svn ps svn:keywords "Id" '{}' \; +find . -name \*.xml -exec svn ps svn:keywords "Revision Id" '{}' \; +find . -name \*.java -exec svn ps svn:eol-style native '{}' \; +find . -name \*.xml -exec svn ps svn:eol-style native '{}' \; + |