From 7796a785c9f293abf0c63615df1c1a13e99704ae Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Thu, 31 Jul 2014 13:14:36 -0400 Subject: measure usage based on the full size of the dir No need to arbitrarily restrict this to the objects. --- asp.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asp.in b/asp.in index 1c4902e..6f35d67 100644 --- a/asp.in +++ b/asp.in @@ -167,7 +167,7 @@ untrack() { disk_usage() { local usage - read usage _ < <(du -sh "$ASPROOT/objects") + read usage _ < <(du -sh "$ASPROOT") log_info 'Using %s on disk.' "$usage" } -- cgit v1.2.3-54-g00ecf