changeset 50993 | 82bc0b26db50 |
parent 50926 | 18c8c18993f0 |
child 51282 | 9d3721552b6c |
--- a/mercurial/posix.py Thu Aug 03 02:28:52 2023 +0200 +++ b/mercurial/posix.py Thu Aug 03 02:34:17 2023 +0200 @@ -553,6 +553,12 @@ return False +if pycompat.sysplatform == b'OpenVMS': + # OpenVMS's symlink emulation is broken on some OpenVMS versions. + def checklink(path): + return False + + _needsshellquote: Optional[Match[bytes]] = None