diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2011-04-07 09:35:54 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2011-04-07 09:35:54 +0000 |
commit | f5c95ada0a4d7d60eb5d72ebcd267789aabb75fa (patch) | |
tree | a472f698dbc5656a71ed20da8d40fb252ee694c0 | |
parent | 3c76bd372ad57fb60c22a59ff7311a938f9045da (diff) |
since Gem is now 2 levels deep, cd.. is not enough
svn path=/trunk/; revision=15066
-rwxr-xr-x | scripts/update-developer-layout.sh | 12 |
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 .. |