~codyshepherd/livecd-rootfs/bionic-proposed-snaps-manifest

« back to all changes in this revision

Viewing changes to live-build/auto/build

  • Committer: Steve Langasek
  • Date: 2018-08-02 19:13:28 UTC
  • mfrom: (1676.1.1 livecd-rootfs-bionic)
  • Revision ID: steve.langasek@canonical.com-20180802191328-19i0yy9dk3xhgk5q
MergeĀ lp:~vorlon/livecd-rootfs/lp.1302192-bionic

Show diffs side-by-side

added added

removed removed

Lines of Context:
459
459
done
460
460
 
461
461
if [ -e "binary/$INITFS/filesystem.dir" ]; then
462
 
        (cd "binary/$INITFS/filesystem.dir/" && tar -c *) | \
 
462
        (cd "binary/$INITFS/filesystem.dir/" && tar -c --xattrs *) | \
463
463
                gzip -9 --rsyncable > "$PREFIX.rootfs.tar.gz"
464
464
        chmod 644 "$PREFIX.rootfs.tar.gz"
465
465
elif [ -e binary-tar.tar.gz ]; then
496
496
fi
497
497
 
498
498
if [ "$PROJECT" = "ubuntu-touch" ] || [ "$PROJECT" = "ubuntu-touch-custom" ]; then
499
 
        (cd "binary/$INITFS/custom.dir/" && tar -c *) | \
 
499
        (cd "binary/$INITFS/custom.dir/" && tar -c --xattrs *) | \
500
500
                gzip -9 --rsyncable > "$PREFIX.custom.tar.gz"
501
501
        chmod 644 "$PREFIX.custom.tar.gz"
502
502
fi