##// END OF EJS Templates
posix: move checkexec test file to .hg/cache...
Mads Kiilerich -
r30444:b1ce25a4 default
parent child Browse files
Show More
@@ -160,7 +160,10 b' def checkexec(path):'
160
160
161 try:
161 try:
162 EXECFLAGS = stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH
162 EXECFLAGS = stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH
163 fh, fn = tempfile.mkstemp(dir=path, prefix='hg-checkexec-')
163 cachedir = os.path.join(path, '.hg', 'cache')
164 if not os.path.isdir(cachedir):
165 cachedir = path
166 fh, fn = tempfile.mkstemp(dir=cachedir, prefix='hg-checkexec-')
164 try:
167 try:
165 os.close(fh)
168 os.close(fh)
166 m = os.stat(fn).st_mode & 0o777
169 m = os.stat(fn).st_mode & 0o777
General Comments 0
You need to be logged in to leave comments. Login now