summaryrefslogtreecommitdiff
path: root/tools/formatXML.sh
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2014-03-07 12:41:48 -0800
committerBen Longbons <b.r.longbons@gmail.com>2014-03-07 12:41:54 -0800
commit0ad0110f8e7f90452c2229fe0031ce68b7b3d1e4 (patch)
treed6c118cb5578652a48de3e0efaf9d4b02fc62a72 /tools/formatXML.sh
parent300be2981298f9939d06f8fdc45a254ea87f6506 (diff)
downloadclientdata-0ad0110f8e7f90452c2229fe0031ce68b7b3d1e4.tar.gz
clientdata-0ad0110f8e7f90452c2229fe0031ce68b7b3d1e4.tar.bz2
clientdata-0ad0110f8e7f90452c2229fe0031ce68b7b3d1e4.tar.xz
clientdata-0ad0110f8e7f90452c2229fe0031ce68b7b3d1e4.zip
Replace tools dir with symlink to the canonical tools repo
This could have been done a while ago, but was delayed in case someone updated their client-data without updating thier server-data.
Diffstat (limited to 'tools/formatXML.sh')
-rwxr-xr-xtools/formatXML.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/tools/formatXML.sh b/tools/formatXML.sh
deleted file mode 100755
index c830f306..00000000
--- a/tools/formatXML.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-cd ..
-
-for f in $(find -name "*.xml")
-do
- if [ ${f} != "./items.xml" ]; then
- xsltproc tools/indent.xsl ${f} > ${f}__
- mv ${f}__ ${f}
- fi
-done
-xmlindent items.xml > items.xml_
-sed 's/[[:space:]]*$//' items.xml_ > items.xml