Skip to content

Commit 0335b64

Browse files
committed
Merge branch 'ap/remote-hg-tilde-is-home-directory'
* ap/remote-hg-tilde-is-home-directory: remote-hg: fix path when cloning with tilde expansion
2 parents aaf4d39 + 33f66b2 commit 0335b64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/remote-helpers/git-remote-hg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1124,7 +1124,7 @@ def do_option(parser):
11241124

11251125
def fix_path(alias, repo, orig_url):
11261126
url = urlparse.urlparse(orig_url, 'file')
1127-
if url.scheme != 'file' or os.path.isabs(url.path):
1127+
if url.scheme != 'file' or os.path.isabs(os.path.expanduser(url.path)):
11281128
return
11291129
abs_url = urlparse.urljoin("%s/" % os.getcwd(), orig_url)
11301130
cmd = ['git', 'config', 'remote.%s.url' % alias, "hg::%s" % abs_url]

0 commit comments

Comments
 (0)