~ubuntu-core-dev/livecd-rootfs/bionic-proposed

« back to all changes in this revision

Viewing changes to live-build/ubuntu-desktop-next/hooks/10-remove-documentation.binary

  • Committer: Balint Reczey
  • Date: 2019-01-31 08:14:49 UTC
  • Revision ID: balint.reczey@canonical.com-20190131081449-n8ne0p9wd90j5cle
Moved to git at https://git.launchpad.net/livecd-rootfs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -x
2
 
 
3
 
echo "I: Removing /var/lib/apt/lists/*"
4
 
find binary/boot/filesystem.dir/var/lib/apt/lists/ -type f | xargs rm -f
5
 
 
6
 
echo "I: Removing /var/cache/apt/*.bin"
7
 
rm -f binary/boot/filesystem.dir/var/cache/apt/*.bin
8