diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-09-23 18:37:31 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-09-23 18:37:31 +0000 |
commit | 74f07ae70eaa9d1a2a790f868baef5d401b15042 (patch) | |
tree | fc535e3dcc5e5e3416d707bec10fc23218466405 | |
parent | 2175f76ed11927ebd20e7e8f27595acf9cf40461 (diff) |
more attempts add getting svn:externals replacement to work smoothly
svn path=/trunk/; revision=16273
-rw-r--r-- | scripts/auto-build/auto-build-common | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/auto-build/auto-build-common b/scripts/auto-build/auto-build-common index 4af85710..3ae16871 100644 --- a/scripts/auto-build/auto-build-common +++ b/scripts/auto-build/auto-build-common @@ -94,11 +94,11 @@ find_git() find_svn() { if [ -x /sw/bin/svn ]; then - echo /sw/bin/svn + echo /sw/bin/svn --non-interactive elif [ -x /usr/bin/svn ]; then - echo /usr/bin/svn + echo /usr/bin/svn --non-interactive else - echo svn + echo svn --non-interactive fi } @@ -111,6 +111,7 @@ remove_dead_svn_externals() if [ -z "$(echo $svn_externals | grep $name)" ]; then echo "Removing defunct svn:external '$name' at '$external'" echo rm -rf "$external" + $svn update "$external" fi done } |