9 lines
308 B
9 lines
308 B
9 years ago
|
#!/bin/sh
|
||
|
|
||
|
# remove-lists: Remove all apt lists for space as our apport does not need them
|
||
|
#
|
||
|
# Author: Łukasz 'sil2100' Zemczak <achiang@canonical.com>
|
||
|
# Date : September 22, 2015
|
||
|
|
||
9 years ago
|
echo "Removing /var/lib/apt/lists/* from the binary"
|
||
|
find binary/boot/filesystem.dir/var/lib/apt/lists/ -type f | xargs rm -f
|