diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-07-31 13:14:36 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2014-07-31 13:14:36 -0400 |
commit | 7796a785c9f293abf0c63615df1c1a13e99704ae (patch) | |
tree | 3aa4ca335aa23f60b4d7535ddd6f3ffcb9bb902e /asp.in | |
parent | 0e2dbae33a788c92e1bcb3b4883d5be7ce2281be (diff) | |
download | asp32-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.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" } |