summaryrefslogtreecommitdiff
path: root/asp.in
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2014-07-31 13:14:36 -0400
committerDave Reisner <dreisner@archlinux.org>2014-07-31 13:14:36 -0400
commit7796a785c9f293abf0c63615df1c1a13e99704ae (patch)
tree3aa4ca335aa23f60b4d7535ddd6f3ffcb9bb902e /asp.in
parent0e2dbae33a788c92e1bcb3b4883d5be7ce2281be (diff)
downloadasp32-7796a785c9f293abf0c63615df1c1a13e99704ae.tar.xz
measure usage based on the full size of the dir
No need to arbitrarily restrict this to the objects.
Diffstat (limited to 'asp.in')
-rw-r--r--asp.in2
1 files changed, 1 insertions, 1 deletions
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"
}