diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-07-01 17:56:31 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-07-01 17:56:31 +0200 |
commit | 37798b774aa37d03b82622cf52e43af4577ae3d2 (patch) | |
tree | d4101ce5b84272e50a7c01c1ba5e7b80f1b1fa27 /bin/pkg | |
parent | 7b9dbab8c4633a218196be3d8a8132a6631ceeb9 (diff) |
pkg: pkg_update: Use a little less clear_line / not newline-terminated messages
Diffstat (limited to 'bin/pkg')
-rwxr-xr-x | bin/pkg | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -725,14 +725,13 @@ function pkg_refresh { function pkg_update { if [[ -z $1 || $1 == local ]] { - info "Updating local package list" + info "Updating local package list\n" list_update_local clear_line } if [[ -z $1 || $1 == remote ]] { - info "Updating remote package list" + info "Updating remote package list\n" list_update_remote - clear_line } } |