diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-10-15 14:52:25 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-10-19 13:32:22 +0200 |
commit | 9d4d81783d59d5abf90f6ca3093f67b3ecfec7fc (patch) | |
tree | df1d69ebe024bf92bd92a4008084d2fafe863d3b | |
parent | d649dc669db2201b274919223ed0aa6b7c37d70d (diff) | |
download | pacman-9d4d81783d59d5abf90f6ca3093f67b3ecfec7fc.tar.gz pacman-9d4d81783d59d5abf90f6ca3093f67b3ecfec7fc.tar.xz |
paccache: avoid spurious blank line written to stderr
this is just stylistic formatting, so write it to stdout.
ref: https://bugs.archlinux.org/task/42389
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r-- | contrib/paccache.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/paccache.sh.in b/contrib/paccache.sh.in index 71aee237..2133e34f 100644 --- a/contrib/paccache.sh.in +++ b/contrib/paccache.sh.in @@ -164,7 +164,7 @@ summarize() { printf -v output 'finished dry run: %d candidates' "$filecount" fi - printf '\n' >&2 + echo msg "$output (disk space saved: %s)" "$(size_to_human "$totalsaved")" } |