diff options
Diffstat (limited to 'dgbuilder/tools/format_xml.sh')
-rwxr-xr-x | dgbuilder/tools/format_xml.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/dgbuilder/tools/format_xml.sh b/dgbuilder/tools/format_xml.sh new file mode 100755 index 00000000..c66153ed --- /dev/null +++ b/dgbuilder/tools/format_xml.sh @@ -0,0 +1,16 @@ +if [ "$#" != "1" ] +then + echo "Usage: $0 xmlFileFullPath" + exit +fi + +if [ -z "$PROJECT_HOME" ] +then + export PROJECT_HOME=$(pwd)/.. +fi +if [ -e "$1" ] +then + python $PROJECT_HOME/tools/formatXml.py $1 +else + echo "File $1 does not exist" +fi |