aboutsummaryrefslogtreecommitdiff
path: root/scripts/update-developer-layout.sh
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-04-07 09:35:54 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-04-07 09:35:54 +0000
commitf5c95ada0a4d7d60eb5d72ebcd267789aabb75fa (patch)
treea472f698dbc5656a71ed20da8d40fb252ee694c0 /scripts/update-developer-layout.sh
parent3c76bd372ad57fb60c22a59ff7311a938f9045da (diff)
since Gem is now 2 levels deep, cd.. is not enough
svn path=/trunk/; revision=15066
Diffstat (limited to 'scripts/update-developer-layout.sh')
-rwxr-xr-xscripts/update-developer-layout.sh12
1 files changed, 10 insertions, 2 deletions
diff --git a/scripts/update-developer-layout.sh b/scripts/update-developer-layout.sh
index 58a684e9..3d47ea84 100755
--- a/scripts/update-developer-layout.sh
+++ b/scripts/update-developer-layout.sh
@@ -15,8 +15,16 @@ cd $cvs_root_dir
echo "Running svn update:"
svn update ${SVNOPTIONS}
echo "Running svn update for Gem:"
-for section in externals/Gem abstractions doc externals packages pd scripts; do
- echo "$section"
+for section in externals/Gem; do
+ echo "Section: $section"
+ cd $section
+ svn update ${SVNOPTIONS}
+ cd ../..
+done
+
+echo "Running svn update for other sections:"
+for section in abstractions doc externals packages pd scripts; do
+ echo "Section: $section"
cd $section
svn update ${SVNOPTIONS}
cd ..