pull umask-checking up
authorMatt Mackall <mpm@selenic.com>
Fri, 29 Dec 2006 20:04:30 -0600
changeset 4326 5e3936eabe5d
parent 4324 cd650cd61b06
child 4327 aba90193f4e4
pull umask-checking up
mercurial/util.py
--- a/mercurial/util.py
+++ b/mercurial/util.py
@@ -851,6 +851,8 @@ if os.name == 'nt':
 
 else:
     nulldev = '/dev/null'
+    _umask = os.umask(0)
+    os.umask(_umask)
 
     def rcfiles(path):
         rcs = [os.path.join(path, 'hgrc')]
@@ -892,9 +894,7 @@ else:
         if mode:
             # Turn on +x for every +r bit when making a file executable
             # and obey umask.
-            umask = os.umask(0)
-            os.umask(umask)
-            os.chmod(f, s | (s & 0444) >> 2 & ~umask)
+            os.chmod(f, s | (s & 0444) >> 2 & ~_umask)
         else:
             os.chmod(f, s & 0666)