aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-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 ..