aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-11-28 13:49:10 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-11-28 13:49:10 +0000
commit2b674e376cab01218211d66eb8b0126a7bafe6f5 (patch)
treea86fd4b40cfb2f41bffde711aa04dee78a0f7e69
parent7d65ec9ef7ea5038239440b86d78cb6f6e95fafe (diff)
downloadsimplepkg-2b674e376cab01218211d66eb8b0126a7bafe6f5.tar.gz
simplepkg-2b674e376cab01218211d66eb8b0126a7bafe6f5.tar.bz2
svn_del fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@595 04377dda-e619-0410-9926-eae83683ac58
-rw-r--r--trunk/lib/common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/lib/common.sh b/trunk/lib/common.sh
index c5fd2e7..b7c1a2e 100644
--- a/trunk/lib/common.sh
+++ b/trunk/lib/common.sh
@@ -589,7 +589,7 @@ function svn_del {
chown_svn $file && chgrp_svn $file
( cd $folder && su_svn del --force `basename $file` )
else
- rm -rf $file
+ ( cd $folder && rm -rf `basename $file` )
fi
}