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.
16 lines
436 B
16 lines
436 B
4 months ago
|
#!/bin/sh
|
||
|
. ${HOME}/bin-build/stbitten-env.sh
|
||
|
. ${HOME}/tomcat/env.sh
|
||
|
if [ -d ${BUILDER_BEST}/common/seed ];
|
||
|
then
|
||
|
# old svn
|
||
|
BESTVER=`svnversion ${BUILDER_BEST}/common/seed`
|
||
|
elif [ -f ${BUILDER_BEST}/cldr-apps/currev.txt ];
|
||
|
then
|
||
|
CLDR_CURREV=`cat ${BUILDER_BEST}/cldr-apps/currev.txt`
|
||
|
else
|
||
|
CLDR_CURREV=`svnversion .`
|
||
|
fi
|
||
|
echo currev ${CLDR_CURREV}
|
||
|
echo "CLDR_CURREV=${BESTVER}" > ${CATALINA_BASE}/cldr/currev.properties
|