diff --git a/test.sh b/test.sh deleted file mode 100755 index 3d8d3755cf0..00000000000 --- a/test.sh +++ /dev/null @@ -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 \ No newline at end of file diff --git a/util.sh b/util.sh deleted file mode 100755 index b24b7d39688..00000000000 --- a/util.sh +++ /dev/null @@ -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 \ No newline at end of file