From 516bf8094e4981ed07783aaf548fe984e25b9c72 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 23 Jun 2008 22:18:05 +0200 Subject: bin/pkg: no more quiet updates --- bin/pkg | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/bin/pkg b/bin/pkg index 00eac06..e2723cd 100755 --- a/bin/pkg +++ b/bin/pkg @@ -134,8 +134,8 @@ vcs_incoming () { } vcs_update () { - [ -d .hg ] && hg --quiet pull --update - [ -d .git ] && git pull --quiet + [ -d .hg ] && hg pull --update + [ -d .git ] && git pull } @@ -325,10 +325,8 @@ pkg_update () { NEW=$(vcs_incoming) if ([ $? = 0 ]) { clear_line - info "Updating: $1 to $(echo $NEW | tail -n 1)" + info "Updating $1 to $(echo $NEW | tail -n 1)\n" vcs_update - clear_line - info "Updated $1 to $(echo $NEW | tail -n 1) \n" check_deps "$1" if ([ -r Makefile ]) { info "Building binaries\n" -- cgit v1.2.3