Mercurial > public > mercurial-scm > hg
diff mercurial/posix.py @ 16240:95e45abe7e8e
posix: ignore execution bit in cygwin (issue3301)
author | A. S. Budden <abudden@gmail.com> |
---|---|
date | Thu, 08 Mar 2012 20:17:36 +0000 |
parents | a814f8fcc65a |
children | 60cc3a0d2249 |
line wrap: on
line diff
--- 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