You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
303 B
13 lines
303 B
#!/bin/sh
|
|
CLDR_TOOLS=${BUILDER_BEST}/cldr-tools
|
|
if [ -d tools/java ];
|
|
then
|
|
CLDR_TOOLS=`pwd`/tools/java
|
|
fi
|
|
|
|
LIBS=${CLDR_TOOLS}/libs
|
|
ALL_LIBS=`echo ${LIBS}/*.jar | tr ' ' ':'`
|
|
CP=${CLDR_TOOLS}/cldr.jar:${ALL_LIBS}
|
|
#echo CP ${CP}
|
|
java -classpath "${CP}" org.unicode.cldr.util.XMLValidator $@
|