[svn-r11793] Purpose:

Improvement

Description:
Release action now prints a message showing Release version and where it
deposits it.

Platforms tested:
Change is simple and will test by hand after check in.

Misc. update:
This commit is contained in:
HDF Admin 2005-12-14 10:04:11 -05:00
parent 7a4780e0de
commit 4d005161a5

View File

@ -436,8 +436,9 @@ if [ "$cmd" = "all" -o -n "$cmdrel" ]; then
# cvs commit if errors encounter here.
set -e
cd ${CURRENT}
bin/release -d $ARCHIVES $METHODS
RELEASE_VERSION="`perl bin/h5vers -v`"
echo "Making snapshot release ($RELEASE_VERSION) to ${ARCHIVES}..."
bin/release -d $ARCHIVES $METHODS
perl bin/h5vers -i
cvs -Q commit -m "Snapshot $RELEASE_VERSION"
)