diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/sync.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c index c2313b4b..828df1fd 100644 --- a/src/pacman/sync.c +++ b/src/pacman/sync.c @@ -372,16 +372,6 @@ int pacman_sync(list_t *targets) return(sync_cleancache(config->op_s_clean)); } - if(config->op_s_sync) { - /* grab a fresh package list */ - MSG(NL, _(":: Synchronizing package databases...\n")); - alpm_logaction(_("synchronizing package lists")); - if(!sync_synctree(config->op_s_sync, pmc_syncs)) { - ERR(NL, _("failed to synchronize any databases")); - return(1); - } - } - if(config->op_s_search) { return(sync_search(pmc_syncs, targets)); } @@ -409,6 +399,17 @@ int pacman_sync(list_t *targets) return(1); } + if(config->op_s_sync) { + /* grab a fresh package list */ + MSG(NL, _(":: Synchronizing package databases...\n")); + alpm_logaction(_("synchronizing package lists")); + if(!sync_synctree(config->op_s_sync, pmc_syncs)) { + ERR(NL, _("failed to synchronize any databases")); + return(1); + } + } + + if(config->op_s_upgrade) { MSG(NL, _(":: Starting full system upgrade...\n")); alpm_logaction(_("starting full system upgrade")); |