From: rhatto Date: Fri, 28 Nov 2008 13:49:10 +0000 (+0000) Subject: svn_del fix X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=2b674e376cab01218211d66eb8b0126a7bafe6f5;p=simplepkg.git svn_del fix git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@595 04377dda-e619-0410-9926-eae83683ac58 --- 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 }