diff options
author | 2008-11-24 05:09:44 +0000 | |
---|---|---|
committer | 2008-11-24 05:09:44 +0000 | |
commit | 9c2fa5620ab35396a840d455356972e884700edc (patch) | |
tree | bd65816676985d05cb4f179e4f02b8b732d10a3e | |
parent | Also add 2 spaces after newline, for alignment. (diff) | |
download | portage-multirepo-2.2_rc16.tar.gz portage-multirepo-2.2_rc16.tar.bz2 portage-multirepo-2.2_rc16.zip |
Use tar options to make files owned in release tarballs owned byv2.2_rc16
portage:portage instead of the current user.
svn path=/main/trunk/; revision=12081
-rwxr-xr-x | mkrelease.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mkrelease.sh b/mkrelease.sh index 93d22da0..ed7c383e 100755 --- a/mkrelease.sh +++ b/mkrelease.sh @@ -79,7 +79,8 @@ cp "${SOURCE_DIR}/"{ChangeLog,DEVELOPING,NEWS,RELEASE-NOTES,TEST-NOTES} \ cd "${RELEASE_BUILDDIR}" echo ">>> Creating release tarball ${RELEASE_TARBALL}" -tar cfj "${RELEASE_TARBALL}" "${RELEASE}" || die "tarball creation failed" +tar --owner portage --group portage -cjf "${RELEASE_TARBALL}" "${RELEASE}" || \ + die "tarball creation failed" DISTDIR=$(portageq distdir) if [ -n "${DISTDIR}" -a -d "${DISTDIR}" -a -w "${DISTDIR}" ]; then |