diff --git a/runbot/models/repo.py b/runbot/models/repo.py index d4e05d3b..cb1e7544 100644 --- a/runbot/models/repo.py +++ b/runbot/models/repo.py @@ -344,7 +344,7 @@ class runbot_repo(models.Model): @api.multi def _update(self, force=True): """ Update the physical git reposotories on FS""" - for repo in self: + for repo in reversed(self): try: repo._update_git(force) except Exception: