From 002ba766fdf59fceaa5dfcdb4d9a7be16b257f87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Sat, 4 Apr 2009 12:06:54 +0000 Subject: added "--ignore-externals" to the autoscripts svn path=/trunk/; revision=10960 --- scripts/update-developer-layout.sh | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'scripts/update-developer-layout.sh') diff --git a/scripts/update-developer-layout.sh b/scripts/update-developer-layout.sh index da016a62..cf3ea069 100755 --- a/scripts/update-developer-layout.sh +++ b/scripts/update-developer-layout.sh @@ -1,24 +1,23 @@ #!/bin/sh -# this script updates all code from CVS in the standard developer's layout. +# this script updates all code from subversion in the standard developer's layout. # # Usage: just run it and it should find things if you have your stuff layed # out in the standard dev layout, or used checkout-developer-layout.sh to # checkout your pd source tree -# Be aware that SourceForge's anonymous CVS server is generally 24 hours -# behind the authenticated CVS. +cvs_root_dir=$(echo $0 | sed 's|\(.*\)/.*$|\1|')/.. -cvs_root_dir=`echo $0 | sed 's|\(.*\)/.*$|\1|'`/.. +SVNOPTIONS="--ignore-externals" cd $cvs_root_dir echo "Running svn update:" -svn update -echo "Running cvs update:" +svn update ${SVNOPTIONS} +echo "Running svn update for Gem:" for section in Gem videoIO; do echo "$section" cd $section - svn update + svn update ${SVNOPTIONS} cd .. done -- cgit v1.2.1