libdevuansdk

common library for devuan's simple distro kits
git clone https://git.parazyd.org/libdevuansdk
Log | Files | Refs | Submodules | README | LICENSE

commit b6f57c389429397022679ed42de350d4aadf2729
parent 9afec404754829a70f3b9c5d2c1d0ab67b57fdc6
Author: parazyd <parazyd@dyne.org>
Date:   Mon, 22 Jun 2020 12:38:54 +0200

Fix tar call.

Diffstat:
Mzlibs/bootstrap | 4++--
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 }