Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hg.py @ 18511:798ab869b2ee stable
share: backout fd903f89e42b, except the test
Locating the share source when no default path is available is now handled in
subrepo._abssource(), so unconditionally setting a default path (and the
associated problems) can be avoided.
The test change reflects the fact that a default path is no longer set on the
resulting share.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Tue, 27 Nov 2012 21:31:59 -0500 |
parents | fe67107094fd |
children | b6b9475c563a |
line wrap: on
line diff
--- a/mercurial/hg.py Tue Nov 27 20:56:27 2012 -0500 +++ b/mercurial/hg.py Tue Nov 27 21:31:59 2012 -0500 @@ -171,14 +171,11 @@ r = repository(ui, root) default = srcrepo.ui.config('paths', 'default') - if not default: - # set default to source for being able to clone subrepos - default = os.path.abspath(util.urllocalpath(origsource)) - fp = r.opener("hgrc", "w", text=True) - fp.write("[paths]\n") - fp.write("default = %s\n" % default) - fp.close() - r.ui.setconfig('paths', 'default', default) + if default: + fp = r.opener("hgrc", "w", text=True) + fp.write("[paths]\n") + fp.write("default = %s\n" % default) + fp.close() if update: r.ui.status(_("updating working directory\n"))