Submitter | phabricator |
---|---|
Date | Nov. 19, 2019, 1:13 p.m. |
Message ID | <6743feb866d11add7724f0b155d6553a@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/43354/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py --- a/mercurial/localrepo.py +++ b/mercurial/localrepo.py @@ -2800,7 +2800,8 @@ continue if f in status.deleted: fail(f, _(b'file not found!')) - if f in vdirs: # visited directory + # Is it a directory that exists or used to exist? + if self.wvfs.isdir(f) or wctx.p1().hasdir(f): d = f + b'/' for mf in matched: if mf.startswith(d):