hooks/minimal: Use "find -print0 | xargs -0" idiom over "find | xargs"

Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
This commit is contained in:
Chris Lamb 2008-04-16 06:19:44 +01:00
parent 76edb7835d
commit 19c72588c8
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ done
apt-get autoremove --yes || true
# Removing unused files
find . -name *~ | xargs rm -f
find . -name *~ -print0 | xargs -0 rm -f
rm -rf /var/cache/man/*