aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-12-13 19:26:40 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-12-13 19:26:40 +0000
commit0a05715553fbb3b3bc71017188722a825b5d2238 (patch)
tree928a05cb34fcfd39404194db27d2232aab041e3d /scripts
parent1db62bc7d2e285bab90f04e070d3d487ba0b339b (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')
-rw-r--r--scripts/auto-build/auto-build-common4
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