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