umask 755 should have been 022, define what not to enable, not define what to enable, derpy me. (issue #161 and issue #162)

Signed-off-by: Mattias Andrée <maandree@operamail.com>
This commit is contained in:
Mattias Andrée 2013-06-01 07:46:49 +02:00
parent ae2856a54a
commit ce741a214e

View file

@ -271,7 +271,7 @@ class Setup():
else: else:
conf = self.configure(opts.opts) conf = self.configure(opts.opts)
self.viewconf(conf) self.viewconf(conf)
os.umask(0o755) os.umask(0o022)
if method == 'build': if method == 'build':
self.build(conf) self.build(conf)