diff options
Diffstat (limited to 'bin/gc')
-rwxr-xr-x | bin/gc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -118,7 +118,7 @@ gc_trash() { } gc_tmpdir() { - find "${TMPDIR:-/tmp}" -atime +10 -exec rm -vrf {} \; ||: + find "${TMPDIR:-/tmp}" '(' -type f -or -type d ')' -atime +10 -exec rm -vrf {} \; ||: } gc_coredump() { |