From 40855b48fec2f54eb5c7783902233b16e2cce441 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 21 Mar 2007 03:29:11 +0000 Subject: * pacman.c: Add CacheDir to -v --verbose output. --- src/pacman/pacman.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 358b560a..b58f2ae9 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -510,9 +510,10 @@ int main(int argc, char *argv[]) alpm_option_set_dlcb(log_progress); if(config->verbose > 0) { - printf("Root : %s\n", alpm_option_get_root()); - printf("DBPath: %s\n", alpm_option_get_dbpath()); - list_display(_("Targets:"), pm_targets); + printf("Root : %s\n", alpm_option_get_root()); + printf("DBPath : %s\n", alpm_option_get_dbpath()); + printf("CacheDir : %s\n", alpm_option_get_cachedir()); + list_display(_("Targets :"), pm_targets); } /* Opening local database */ -- cgit v1.2.3-54-g00ecf