- move the CVS repository specification to a variable

- use authenticated access for now, since SF's anonymous CVS still
  isn't in a happy state
This commit is contained in:
Fred L. Drake, Jr. 2003-10-11 17:50:22 +00:00
parent c02e8784e7
commit 032ed43a38

View File

@ -7,6 +7,9 @@
# Note: tagname may be HEAD to just grab the head revision (e.g. for testing)
#
CVSROOT=':ext:cvs.libexpat.org:/cvsroot/expat'
#CVSROOT=':pserver:anonymous@cvs.libexpat.org:/cvsroot/expat'
if test $# != 1; then
echo "USAGE: $0 tagname"
exit 1
@ -19,7 +22,7 @@ if test -e $tmpdir; then
fi
echo "Checking out into temporary area: $tmpdir"
cvs -d :pserver:anonymous@cvs.libexpat.org:/cvsroot/expat export -r "$1" -d $tmpdir expat || exit 1
cvs -d "$CVSROOT" export -r "$1" -d $tmpdir expat || exit 1
echo ""
echo "----------------------------------------------------------------------"