mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 13:35:32 +00:00
ICU-22723 Integrate CLDR 46 cleaning
This commit is contained in:
parent
ebceedde21
commit
18ff73e239
2 changed files with 0 additions and 27 deletions
9
test.sh
9
test.sh
|
@ -1,9 +0,0 @@
|
|||
number_one () {
|
||||
echo "This is the first function speaking..."
|
||||
}
|
||||
|
||||
number_two () {
|
||||
echo "This is now the second function speaking..."
|
||||
}
|
||||
|
||||
number_one
|
18
util.sh
18
util.sh
|
@ -1,18 +0,0 @@
|
|||
# bash
|
||||
function cldr-tool() {
|
||||
CLDRCLASS=$1
|
||||
if [[ "" == $(echo "${CLDRCLASS}" | tr -c -d .) ]];
|
||||
then
|
||||
# default package
|
||||
CLDRCLASS=org.unicode.cldr.tool.${CLDRCLASS}
|
||||
fi
|
||||
shift
|
||||
EXECARGS="${1}"
|
||||
shift
|
||||
echo ${CLDRCLASS} "${EXECARGS}" -Dexec.cleanupDaemonThreads=false ${@}
|
||||
env LANG=en_US.UTF-8 mvn -DCLDR_DIR=$(pwd) -DCLDR_GITHUB_ANNOTATIONS=true --file=tools/pom.xml -pl cldr-code ${JVMARGS} \
|
||||
-Dfile.encoding=utf-8 compile -DskipTests=true exec:java -Dexec.mainClass=${CLDRCLASS} \
|
||||
-Dexec.args="${EXECARGS}" -Dexec.cleanupDaemonThreads=false ${@}
|
||||
}
|
||||
|
||||
cldr-tool GenerateProductionData
|
Loading…
Add table
Reference in a new issue