# HG changeset patch # User Matt Mackall # Date 1259717295 21600 # Node ID 439d7ea6fe3aa4ab9ec274a68846779153789de9 # Parent 1bf8b870efb44c6620a76749d8dae461388b2c78 share: fix interaction with clone diff -r 1bf8b870efb4 -r 439d7ea6fe3a mercurial/hg.py --- a/mercurial/hg.py Tue Dec 01 14:36:47 2009 -0600 +++ b/mercurial/hg.py Tue Dec 01 19:28:15 2009 -0600 @@ -255,7 +255,7 @@ raise for f in src_repo.store.copylist(): - src = os.path.join(src_repo.path, f) + src = os.path.join(src_repo.sharedpath, f) dst = os.path.join(dest_path, f) dstbase = os.path.dirname(dst) if dstbase and not os.path.exists(dstbase):