Re-enabled compressing the tarball or else all the other scripts break

This commit is contained in:
Bruce Leidl 2018-03-04 12:35:15 -05:00
parent 495c89bdeb
commit 45caa39aaa

View File

@ -44,7 +44,7 @@ cleanup_chroot() {
generate_tarball() { generate_tarball() {
printf "\n\n----- Generating rootfs tarball -----\n\n" printf "\n\n----- Generating rootfs tarball -----\n\n"
tar -C ${DBS_ROOT} -c --xattrs --xattrs-include=* -f ${DBS_BASE}/user-rootfs.tar . tar -C ${DBS_ROOT} -c --xattrs --xattrs-include=* -f ${DBS_BASE}/user-rootfs.tar .
#xz --force --threads=0 ${DBS_BASE}/user-rootfs.tar xz --force --threads=0 ${DBS_BASE}/user-rootfs.tar
ls -al ${DBS_BASE}/user-rootfs.tar ls -al ${DBS_BASE}/user-rootfs.tar
printf "\n\n" printf "\n\n"
} }