diff --git a/subcmds/sync.py b/subcmds/sync.py index 224d9885..a2cc1f89 100644 --- a/subcmds/sync.py +++ b/subcmds/sync.py @@ -1676,6 +1676,13 @@ later is required to fix a server side protocol bug. err_update_projects = False err_update_linkfiles = False + # Log the repo projects by existing and new. + existing = [x for x in all_projects if x.Exists] + mp.config.SetString("repo.existingprojectcount", str(len(existing))) + mp.config.SetString( + "repo.newprojectcount", str(len(all_projects) - len(existing)) + ) + self._fetch_times = _FetchTimes(manifest) if not opt.local_only: with multiprocessing.Manager() as manager: