From eaef668c0ff7cd5433dccb4ee45fba87e1e7d97e Mon Sep 17 00:00:00 2001 From: neingeist Date: Wed, 1 Jul 2015 06:51:42 +0200 Subject: [PATCH] find-junk: add ~/.cache/tracker to list of junk directories --- find-junk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/find-junk b/find-junk index f714cf0..4416799 100755 --- a/find-junk +++ b/find-junk @@ -14,7 +14,8 @@ M = 1024*1024 def junk_dirs(): """Return directories which potentially contain junk""" - for d in ['~/tmp', '~/.local/share/Trash', '~/rpmbuild', '~/RPM']: + for d in ['~/tmp', '~/.local/share/Trash', '~/rpmbuild', '~/RPM', + '~/.cache/tracker']: d = os.path.expanduser(d) if os.path.exists(d): yield d