diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-30 06:53:36 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-30 06:53:36 +0000 |
commit | f7d28b65ad3287d8157c914f24e4003b8d5739b7 (patch) | |
tree | f34b5f12725558971f3bbe5abe434c8daae5b359 | |
parent | 0eddbff572ebef0fd5e03fdd65cb94b0996ac456 (diff) |
a couple more fixes from the SourceForge compile farm build
svn path=/trunk/; revision=4085
-rwxr-xr-x | scripts/checkout-developer-layout.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/checkout-developer-layout.sh b/scripts/checkout-developer-layout.sh index 49eca98f..e2bacc72 100755 --- a/scripts/checkout-developer-layout.sh +++ b/scripts/checkout-developer-layout.sh @@ -23,7 +23,7 @@ if [ $# -eq 0 ]; then 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 @@ -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 +CVSROOT=:pserver:anonymous@cvs.gem.iem.at:/cvsroot/pd-gem +#cvs login cvs checkout Gem GemLibs |