mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 04:37:29 +00:00
9 lines
222 B
Plaintext
9 lines
222 B
Plaintext
|
#!/bin/sh -x
|
||
|
|
||
|
echo "I: Removing /var/lib/apt/lists/*"
|
||
|
find binary/boot/filesystem.dir/var/lib/apt/lists/ -type f | xargs rm -f
|
||
|
|
||
|
echo "I: Removing /var/cache/apt/*.bin"
|
||
|
rm -f binary/boot/filesystem.dir/var/cache/apt/*.bin
|
||
|
|