diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-12-09 06:53:12 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-12-09 06:53:12 +0000 |
commit | 3501c7d16e0c3b367d573f8353a255f49038344d (patch) | |
tree | 365ab7804c835d9905452801f8bb432cb01ee66b /scripts | |
parent | c4e8dc654a5d88a27003cea7dcd3c67a54faefa7 (diff) |
checking in Frank's fixes
svn path=/trunk/; revision=4177
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkout-developer-layout.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/checkout-developer-layout.sh b/scripts/checkout-developer-layout.sh index e2bacc72..2c31a9aa 100755 --- a/scripts/checkout-developer-layout.sh +++ b/scripts/checkout-developer-layout.sh @@ -20,16 +20,16 @@ function print_usage () } if [ $# -eq 0 ]; then - CVSROOT=":pserver:anonymous@cvs.sourceforge.net:/cvsroot/pure-data" + export CVSROOT=":pserver:anonymous@cvs.sourceforge.net:/cvsroot/pure-data" echo "Checking out anonymously. Give your SourceForge ID as an argument otherwise." echo "The anonymous password is: anoncvs" -# cvs login + cvs login elif [ "$1" == "--help" ]; then print_usage elif [ "$1" == "-h" ]; then print_usage elif [ $# -eq 1 ]; then - CVSROOT=":ext:${1}@cvs.sourceforge.net:/cvsroot/pure-data" + export CVSROOT=":ext:${1}@cvs.sourceforge.net:/cvsroot/pure-data" else print_usage fi @@ -42,8 +42,8 @@ for section in abstractions doc extensions externals pd packages scripts; do done # Gem is still separate -CVSROOT=:pserver:anonymous@cvs.gem.iem.at:/cvsroot/pd-gem -#cvs login +export CVSROOT=:pserver:anonymous@cvs.gem.iem.at:/cvsroot/pd-gem +cvs login cvs checkout Gem GemLibs |