From 6cf529b5dae39e5c0bf7094e9ea1d2e601ff93fc Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 23 Feb 2008 23:38:53 +0000 Subject: [PATCH] Fix #532 --- osx_installer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osx_installer.py b/osx_installer.py index 7659f7d46e..810ba6e4b5 100644 --- a/osx_installer.py +++ b/osx_installer.py @@ -65,7 +65,9 @@ for s, l in zip(scripts, links): if os.path.lexists(l): os.remove(l) print 'Creating link:', l, '->', s + omask = os.umask(022) os.symlink(s, l) + os.umask(omask) """ dest_path = %(dest_path)s