summaryrefslogtreecommitdiff
path: root/bin/pkg
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-07-01 17:56:31 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2009-07-01 17:56:31 +0200
commit37798b774aa37d03b82622cf52e43af4577ae3d2 (patch)
treed4101ce5b84272e50a7c01c1ba5e7b80f1b1fa27 /bin/pkg
parent7b9dbab8c4633a218196be3d8a8132a6631ceeb9 (diff)
pkg: pkg_update: Use a little less clear_line / not newline-terminated messages
Diffstat (limited to 'bin/pkg')
-rwxr-xr-xbin/pkg5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/pkg b/bin/pkg
index 758186b..d163277 100755
--- a/bin/pkg
+++ b/bin/pkg
@@ -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
}
}