diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/sync.c | 4 |
1 files changed, 3 insertions, 1 deletions
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; } |