From 032ed43a38eef14a63d454b7e37650afe1f45847 Mon Sep 17 00:00:00 2001 From: "Fred L. Drake, Jr." Date: Sat, 11 Oct 2003 17:50:22 +0000 Subject: [PATCH] - 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 --- expat/make-release.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/expat/make-release.sh b/expat/make-release.sh index e4be2c9e..e07af09f 100755 --- a/expat/make-release.sh +++ b/expat/make-release.sh @@ -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 "----------------------------------------------------------------------"