index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | src/pacman/sync.c | 4 |
diff --git a/src/pacman/sync.c b/src/pacman/sync.c index d553ba01..0a47e56a 100644 --- a/src/pacman/sync.c +++ b/src/pacman/sync.c @@ -804,7 +804,9 @@ int sync_prepare_execute(void) packages = alpm_trans_get_add(config->handle); if(packages == NULL) { /* nothing to do: just exit without complaining */ - printf(_(" there is nothing to do\n")); + if(!config->print) { + printf(_(" there is nothing to do\n")); + } goto cleanup; } |