diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-12-13 19:26:40 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-12-13 19:26:40 +0000 |
commit | 0a05715553fbb3b3bc71017188722a825b5d2238 (patch) | |
tree | 928a05cb34fcfd39404194db27d2232aab041e3d /scripts/auto-build/auto-build-common | |
parent | 1db62bc7d2e285bab90f04e070d3d487ba0b339b (diff) |
use relative paths rather than absolute, since Cygwin's svn gets the absolute paths confused when run under MSYS
svn path=/trunk/; revision=16684
Diffstat (limited to 'scripts/auto-build/auto-build-common')
-rw-r--r-- | scripts/auto-build/auto-build-common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/auto-build/auto-build-common b/scripts/auto-build/auto-build-common index 5cfabd5f..d3fa2790 100644 --- a/scripts/auto-build/auto-build-common +++ b/scripts/auto-build/auto-build-common @@ -131,14 +131,14 @@ clean_and_update_folder() $git pull elif [ -d $folder/.svn ]; then svn=$(find_svn) - $svn cleanup $folder + $svn cleanup . $svn revert -R . $svn status --no-ignore | \ grep -v '^X' | \ awk '{print $2}' | \ xargs rm -rf $svn update - $svn update -N $folder + $svn update -N . else echo "no cleaning done, unknown SCM" fi |