aboutsummaryrefslogtreecommitdiff
path: root/trunk/lib/common.sh
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/lib/common.sh')
-rw-r--r--trunk/lib/common.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/trunk/lib/common.sh b/trunk/lib/common.sh
index f1635e4..b242d29 100644
--- a/trunk/lib/common.sh
+++ b/trunk/lib/common.sh
@@ -659,7 +659,11 @@ function su_svn {
# execute svn using a different user
if [ ! -z "$SVN_USER" ]; then
- su $SVN_USER -c "svn $*"
+ if [ "`whoami`" != "$SVN_USER" ]; then
+ su $SVN_USER -c "svn $*"
+ else
+ svn $*
+ fi
else
svn $*
fi