##// END OF EJS Templates
posix: disable cygwin's symlink emulation
Matt Mackall -
r16241:60cc3a0d default
parent child Browse files
Show More
@@ -277,6 +277,12 b" if sys.platform == 'cygwin':"
277 def checkexec(path):
277 def checkexec(path):
278 return False
278 return False
279
279
280 # Similarly, Cygwin's symlink emulation is likely to create
281 # problems when Mercurial is used from both Cygwin and native
282 # Windows, with other native tools, or on shared volumes
283 def checklink(path):
284 return False
285
280 def shellquote(s):
286 def shellquote(s):
281 if os.sys.platform == 'OpenVMS':
287 if os.sys.platform == 'OpenVMS':
282 return '"%s"' % s
288 return '"%s"' % s
General Comments 0
You need to be logged in to leave comments. Login now