mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 04:37:29 +00:00
11 lines
443 B
Plaintext
11 lines
443 B
Plaintext
|
#! /bin/sh
|
||
|
# A few things (launchpad-buildd, sbuild-launchpad-chroot) rely on the
|
||
|
# top-level directory being "chroot-autobuild", so we have to do this
|
||
|
# ourselves.
|
||
|
set -e
|
||
|
|
||
|
# gzip was chosen for fastest decompression speed: it decompresses buildd
|
||
|
# chroots about twice as fast as xz and about five times as fast as bzip2.
|
||
|
tar --transform='s,^binary,chroot-autobuild,' --sort=name --numeric-owner \
|
||
|
-czf "livecd.$PROJECT.rootfs.tar.gz" binary
|