#!/bin/sh

#------------------------------------------------------------------
# $Id: get-gnumed-anon.sh,v 1.2 2005/07/11 08:32:57 ncq Exp $
# $Source: /cvsroot/gnumed/gnumed/get-gnumed-anon.sh,v $
# $Revision: 1.2 $
#------------------------------------------------------------------

if [ -d gnumed ] || [ -e update_tree.sh ]; then
	echo " --------------------------------------------------------------"
	echo " There already seems to be a GnuMed CVS tree in this directory."
	echo " You likely want to use <update_tree.sh>."
	echo " --------------------------------------------------------------"
	exit
fi

echo "Anonymously checking out a fresh copy of the GnuMed CVS tree."
export CVS_RSH="ssh"
cvs -z9 -d:ext:anoncvs@subversions.gnu.org:/cvsroot/gnumed co -r rel-0-1 -P gnumed

#------------------------------------------------------------------
# $Log: get-gnumed-anon.sh,v $
# Revision 1.2  2005/07/11 08:32:57  ncq
# - need to *export* environment variable to make them
#   work properly in subprocesses
#
# Revision 1.1  2005/03/11 11:10:14  ncq
# - initial checkin
#
#
