Deleting junk files from target

This commit is contained in:
Manfred Touron 2014-10-27 17:13:50 +00:00
parent 96273847d9
commit f498b8f0e3
1 changed files with 1 additions and 0 deletions

View File

@ -65,6 +65,7 @@ clean_target() {
for file in $(find "$TARGET/var/log" -type f); do
echo | sudo tee $file
done
find "$TARGET" \( -name "*~" -or -name ".??*~" -or -name "#*#" -or -name ".#*" \) -delete
}
archive_target() {