removed the printYangToProp binaries
[ccsdk/distribution.git] / dgbuilder / tools / format_xml.sh
1 if [ "$#" != "1" ]
2 then
3         echo "Usage: $0 xmlFileFullPath"
4         exit
5 fi
6
7 if [ -z "$PROJECT_HOME" ]
8 then
9         export PROJECT_HOME=$(pwd)/..
10 fi
11 if [ -e "$1" ]
12 then
13         python $PROJECT_HOME/tools/formatXml.py $1
14 else
15         echo "File $1 does not exist" 
16 fi