diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-19 23:08:51 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-19 23:08:51 +0000 |
commit | 0b968de71661c553939660ad4bb92faed5869772 (patch) | |
tree | 85ac3cdae899315c81081c5ca8dedfaad9b08388 | |
parent | af87cc2d0c172910d40509fec79a9a6df0492759 (diff) |
after I documented this script on the developers' docs, I added anonymous login and make devsymlinks to the script
svn path=/trunk/; revision=3977
-rwxr-xr-x | scripts/checkout-developer-layout.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/checkout-developer-layout.sh b/scripts/checkout-developer-layout.sh index a8a5f556..4e7e1ba8 100755 --- a/scripts/checkout-developer-layout.sh +++ b/scripts/checkout-developer-layout.sh @@ -20,8 +20,10 @@ function print_usage () } if [ $# -eq 0 ]; then - echo "Checking out anonymously. Give your SourceForge ID as an argument otherwise." 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 elif [ "$1" == "--help" ]; then print_usage elif [ "$1" == "-h" ]; then @@ -37,3 +39,5 @@ for section in abstractions doc extensions externals pd scripts; do cvs checkout $section done +# make the symlinks which simulate the files being installed into the packages +cd packages && make devsymlinks |