# HG changeset patch # User A. S. Budden # Date 1331237856 0 # Node ID 95e45abe7e8ece5733a2d7e227feb9eb12bd5b59 # Parent 287f76b3f502552e0cfa3c087e6b69b812341a38 posix: ignore execution bit in cygwin (issue3301) diff -r 287f76b3f502 -r 95e45abe7e8e mercurial/posix.py --- a/mercurial/posix.py Sat Feb 18 20:10:19 2012 +0100 +++ b/mercurial/posix.py Thu Mar 08 20:17:36 2012 +0000 @@ -270,6 +270,13 @@ return encodingupper(path) + # Cygwin translates native ACLs to POSIX permissions, + # but these translations are not supported by native + # tools, so the exec bit tends to be set erroneously. + # Therefore, disable executable bit access on Cygwin. + def checkexec(path): + return False + def shellquote(s): if os.sys.platform == 'OpenVMS': return '"%s"' % s