summaryrefslogtreecommitdiff
path: root/dgit
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2016-11-07 20:51:12 +0000
committerIan Jackson <ijackson@chiark.greenend.org.uk>2016-11-07 20:51:13 +0000
commit6f4ecf492c297aa6a1f0c2b2652225cd40ce72be (patch)
tree9f89962631ba05571392c252882e9d0620c84836 /dgit
parent79670972590a2b34c20a85929b28c3ce7425c55f (diff)
dgit: aptget: un-disable cache clean
Have fudged it to see what it did, and it seems to work. Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Diffstat (limited to 'dgit')
-rwxr-xr-xdgit2
1 files changed, 1 insertions, 1 deletions
diff --git a/dgit b/dgit
index 74de9af..b7e7f7e 100755
--- a/dgit
+++ b/dgit
@@ -1164,7 +1164,7 @@ sub aptget_aptcache () { return @aptcache, qw(-c), $aptget_configpath; }
sub aptget_cache_clean {
runcmd_ordryrun_local qw(sh -ec),
- 'cd "$1"; pwd; find -atime +30 -type f -print0 | xargs -0r echo rm --',
+ 'cd "$1"; find -atime +30 -type f -print0 | xargs -0r rm --',
'x', $aptget_base;
}