diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-11-28 00:56:58 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-11-28 00:56:58 +0000 |
commit | 566db3ce0820f289f22deb33c850e6d469473339 (patch) | |
tree | 0b537189566e29119ba694e02c7e4db533875eba /trunk/lib | |
parent | aafefd9d5e248ba5fd860387c1a88357137006b9 (diff) | |
download | simplepkg-566db3ce0820f289f22deb33c850e6d469473339.tar.gz simplepkg-566db3ce0820f289f22deb33c850e6d469473339.tar.bz2 |
fixes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@567 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/lib')
-rw-r--r-- | trunk/lib/common.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/trunk/lib/common.sh b/trunk/lib/common.sh index a8cce3f..217bfb7 100644 --- a/trunk/lib/common.sh +++ b/trunk/lib/common.sh @@ -922,7 +922,8 @@ function gen_meta { echo "" >> $LOCATION/$METAFILE echo "Created metafile for `basename $1`" - svn_add `dirname $1`/`basename $1 .tgz`.meta + cd `dirname $1` + svn_add `basename $1 .tgz`.meta } |