Browse Source

remote-bzr: fix cloning of non-listable repos

Commit 95b0c60 (remote-bzr: add support for bzr repos) introduced a
regression by assuming all bzr remote repos are listable, but they are
not.

If they are not listable they are basically useless, so let's assume
there is no bzr repo.

Reported-by: Thorsten Kranzkowski <dl8bcu@dl8bcu.de>
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Felipe Contreras 12 years ago committed by Junio C Hamano
parent
commit
4f4e7e9b62
  1. 3
      contrib/remote-helpers/git-remote-bzr

3
contrib/remote-helpers/git-remote-bzr

@ -840,6 +840,9 @@ def get_repo(url, alias):


try: try:
repo = origin.open_repository() repo = origin.open_repository()
if not repo.user_transport.listable():
# this repository is not usable for us
raise bzrlib.errors.NoRepositoryPresent(repo.bzrdir)
except bzrlib.errors.NoRepositoryPresent: except bzrlib.errors.NoRepositoryPresent:
# branch # branch



Loading…
Cancel
Save