diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-11-28 14:15:18 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-11-28 14:15:18 +0000 |
commit | e5d18166fca61be2a4262fcb0e0c8faaa0ede2e5 (patch) | |
tree | 686efcf8f6bbceecc8275b277613f6cf4309960a /trunk/lib/common.sh | |
parent | 07b73bf1b5493ae2d3063275e3b7e132773ef133 (diff) | |
download | simplepkg-e5d18166fca61be2a4262fcb0e0c8faaa0ede2e5.tar.gz simplepkg-e5d18166fca61be2a4262fcb0e0c8faaa0ede2e5.tar.bz2 |
fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@598 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/lib/common.sh')
-rw-r--r-- | trunk/lib/common.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/trunk/lib/common.sh b/trunk/lib/common.sh index b7c1a2e..e34ce8e 100644 --- a/trunk/lib/common.sh +++ b/trunk/lib/common.sh @@ -954,8 +954,7 @@ function gen_meta { echo "" >> $LOCATION/$METAFILE echo "Created metafile for `basename $1`" - cd `dirname $1` - svn_add `basename $1 .tgz`.meta + ( cd `dirname $1` && svn_add `basename $1 .tgz`.meta ) } |