summaryrefslogtreecommitdiff
path: root/client/formatXML.sh
diff options
context:
space:
mode:
Diffstat (limited to 'client/formatXML.sh')
-rwxr-xr-xclient/formatXML.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/client/formatXML.sh b/client/formatXML.sh
deleted file mode 100755
index c830f30..0000000
--- a/client/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