• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2BEST=${HOME}/best
3CLDR_TOOLS=${BEST}/cldr-tools
4if [ -d tools/java ];
5then
6        CLDR_TOOLS=`pwd`/tools/java
7fi
8
9LIBS=${CLDR_TOOLS}/libs
10ALL_LIBS=`echo ${LIBS}/*.jar | tr ' ' ':'`
11CP=${CLDR_TOOLS}/cldr.jar:${ALL_LIBS}
12java -classpath "${CP}" ${JAVA_OPTS} org.unicode.cldr.test.ConsoleCheckCLDR  $@
13