aboutsummaryrefslogtreecommitdiff
path: root/scripts/update-developer-layout.sh
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-04-04 12:06:54 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-04-04 12:06:54 +0000
commit002ba766fdf59fceaa5dfcdb4d9a7be16b257f87 (patch)
tree44da4c7d66c7081b515278bf7934e554e0636586 /scripts/update-developer-layout.sh
parentdfffde8595405a3350eb48da94271201b52bb687 (diff)
added "--ignore-externals" to the autoscripts
svn path=/trunk/; revision=10960
Diffstat (limited to 'scripts/update-developer-layout.sh')
-rwxr-xr-xscripts/update-developer-layout.sh13
1 files changed, 6 insertions, 7 deletions
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.
# <hans@at.or.at>
# 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