From b6f57c389429397022679ed42de350d4aadf2729 Mon Sep 17 00:00:00 2001 From: parazyd Date: Mon, 22 Jun 2020 12:38:54 +0200 Subject: [PATCH] Fix tar call. --- zlibs/bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zlibs/bootstrap b/zlibs/bootstrap index c09499b..08db301 100644 --- 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 }