diff options
author | Dan Timoney <dtimoney@att.com> | 2017-03-31 17:47:19 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2017-03-31 18:06:03 -0400 |
commit | b2175581c55981e2eb039f3543baffe76d13394d (patch) | |
tree | 3c12aec883ac2138516e977debb5853c124ebedd /dgbuilder/tools/format_xml.sh | |
parent | 6a1dc58085031a5aaccab2e0bb425f825e24ec80 (diff) |
[SDNC-5] Rebase sdnc-oam
Port to OpenDaylight Boron and sync updates since 16.10
Change-Id: I9f6febe0bd3d50c3d27c775e5a41806ee3d2e6cb
Signed-off-by: Dan Timoney <dtimoney@att.com>
Former-commit-id: c7fb7db31a50d5f0005251d41f497fbd4fb2ae4b
Diffstat (limited to 'dgbuilder/tools/format_xml.sh')
-rwxr-xr-x | dgbuilder/tools/format_xml.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dgbuilder/tools/format_xml.sh b/dgbuilder/tools/format_xml.sh index f0074e67..c66153ed 100755 --- a/dgbuilder/tools/format_xml.sh +++ b/dgbuilder/tools/format_xml.sh @@ -8,10 +8,9 @@ if [ -z "$PROJECT_HOME" ] then export PROJECT_HOME=$(pwd)/.. fi -export CLASSPATH=$CLASSPATH:. if [ -e "$1" ] then - java FormatXml $1 + python $PROJECT_HOME/tools/formatXml.py $1 else echo "File $1 does not exist" fi |