aboutsummaryrefslogtreecommitdiff
path: root/scripts/update-developer-layout.sh
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-04-06 01:38:54 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-04-06 01:38:54 +0000
commitf9ff978c9c58d6da052d1802c680da415c5a9212 (patch)
tree3628c18a4e89b37778931dbee46eaa30c41cf1ea /scripts/update-developer-layout.sh
parent20765019036094d5957b1423a8ff106ca63eb117 (diff)
fixed up scripts to work better for others
svn path=/trunk/; revision=4817
Diffstat (limited to 'scripts/update-developer-layout.sh')
-rwxr-xr-xscripts/update-developer-layout.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/update-developer-layout.sh b/scripts/update-developer-layout.sh
new file mode 100755
index 00000000..0247fcb8
--- /dev/null
+++ b/scripts/update-developer-layout.sh
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+# this script updates all code from CVS 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|'`/..
+
+cd $cvs_root_dir
+
+# don't update the "pd" tree yet, since Pd-extended is still built against a
+# static tag, and not HEAD
+for section in abstractions doc extensions externals packages scripts Gem GemLibs; do
+ echo "$section"
+ cd $section
+ cvs up
+ cd ..
+done