From 203725dfc3a24449277fad4a2fe84c640cb2ade1 Mon Sep 17 00:00:00 2001 From: HDF Admin Date: Wed, 19 Nov 2003 23:43:11 -0500 Subject: [svn-r7858] Purpose: Improvement Description: The cvs checkout used the complete path of current/ which is not accepted by cvs server. Changed it to chdir to the snapshot directory and then cvs checkout just current/. Platforms tested: Not h5committested because it does not test this command. Tested in tg-ncsa which has no direct access to the CVS directory and must use the server route. Misc. update: --- bin/snapshot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/snapshot b/bin/snapshot index b9ee743..897ccc9 100755 --- a/bin/snapshot +++ b/bin/snapshot @@ -259,7 +259,7 @@ if [ "$cmd" = "all" -o -n "$cmdcheckout" ]; then exit 1 fi # Check out the current version from CVS - cvs -Q co -d ${CURRENT} ${CVSVERSION} hdf5 || exit 1 + (cd $BASEDIR; cvs -Q co -d current ${CVSVERSION} hdf5 ) || exit 1 fi # Do CVS checkout -- cgit v0.12