[CCSDK-28] populated the seed code for dgbuilder
[ccsdk/distribution.git] / dgbuilder / tools / format_xml.sh
diff --git a/dgbuilder/tools/format_xml.sh b/dgbuilder/tools/format_xml.sh
new file mode 100755 (executable)
index 0000000..c66153e
--- /dev/null
@@ -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