summaryrefslogtreecommitdiffstats
path: root/dgbuilder/tools/format_xml.sh
blob: f0074e67f593dfeacce83d2d556bffbca15b9970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
if [ "$#" != "1" ]
then
        echo "Usage: $0 xmlFileFullPath"
        exit
fi

if [ -z "$PROJECT_HOME" ]
then
        export PROJECT_HOME=$(pwd)/..
fi
export CLASSPATH=$CLASSPATH:.
if [ -e "$1" ]
then
	java FormatXml $1
else
	echo "File $1 does not exist" 
fi