Updating removal of backup files in stripped example hook to also work with spaces in filenames.
This commit is contained in:
parent
c68a776eff
commit
5473c18214
|
@ -31,7 +31,7 @@ done
|
|||
apt-get autoremove --yes || true
|
||||
|
||||
# Removing unused files
|
||||
find . -name *~ | xargs rm -f
|
||||
find . -name *~ -print0 | xargs -0 rm -f
|
||||
|
||||
rm -rf /usr/include/*
|
||||
#rm -rf /usr/share/groff/*
|
||||
|
|
Loading…
Reference in New Issue