commit b6f57c389429397022679ed42de350d4aadf2729
parent 9afec404754829a70f3b9c5d2c1d0ab67b57fdc6
Author: parazyd <parazyd@dyne.org>
Date: Mon, 22 Jun 2020 12:38:54 +0200
Fix tar call.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/zlibs/bootstrap b/zlibs/bootstrap
@@ -161,13 +161,13 @@ bootstrap_tar_pack() {
pushd ${strapdir}
mkdir -p ${_dest}
silly
- sudo tar czfp "$bootstrap_tgz" . \
+ sudo tar czfp "$bootstrap_tgz" \
--acls \
--selinux \
--xattrs \
--xattrs-include=security.capability \
--xattrs-include=user.pax.flags \
- --exclude={./dev,./sys,./proc} || zerr
+ --exclude={./dev,./sys,./proc} . || zerr
popd
fi
}