From dc4f7af890f4cc6424abdb395294489fd6171cb5 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 11 Nov 2011 00:39:47 +0100 Subject: [PATCH] xbps-bin: remove useless printf in autoupdate target. --- bin/xbps-bin/install.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/xbps-bin/install.c b/bin/xbps-bin/install.c index f6baa3f9..1607c216 100644 --- a/bin/xbps-bin/install.c +++ b/bin/xbps-bin/install.c @@ -187,7 +187,6 @@ autoupdate_pkgs(bool yes, bool show_download_pkglist_url) * Update all currently installed packages, aka * "xbps-bin autoupdate". */ - printf("Finding new packages...\n\n"); if ((rv = xbps_repository_update_packages()) != 0) { if (rv == ENOENT) { printf("No packages currently registered.\n"); @@ -205,7 +204,6 @@ autoupdate_pkgs(bool yes, bool show_download_pkglist_url) return -1; } } - return exec_transaction(yes, show_download_pkglist_url); }