aboutsummaryrefslogtreecommitdiff
path: root/trunk/lib
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/lib')
-rw-r--r--trunk/lib/common.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/trunk/lib/common.sh b/trunk/lib/common.sh
index 78b8be8..555ecbc 100644
--- a/trunk/lib/common.sh
+++ b/trunk/lib/common.sh
@@ -853,7 +853,7 @@ function su_svn {
function chown_svn {
# set svn folder ownership
- if [ ! -z "$SVN_USER" ] && [ ! -e "$1" ]; then
+ if [ ! -z "$SVN_USER" ] && [ -e "$1" ]; then
chown -R $SVN_USER $1
fi
@@ -862,7 +862,7 @@ function chown_svn {
function chgrp_svn {
# set svn folder group
- if [ ! -z "$SVN_GROUP" ] && [ ! -e "$1" ]; then
+ if [ ! -z "$SVN_GROUP" ] && [ -e "$1" ]; then
chgrp -R $SVN_GROUP $1
fi