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
322 B
13 lines
322 B
#!/bin/sh
|
|
BEST=${HOME}/best
|
|
CLDR_TOOLS=${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}
|
|
java -classpath "${CP}" ${JAVA_OPTS} org.unicode.cldr.test.ConsoleCheckCLDR $@
|