whoops, wrong umask, now 755 (issue #161)

Signed-off-by: Mattias Andrée <maandree@operamail.com>
This commit is contained in:
Mattias Andrée 2013-06-01 05:42:55 +02:00
parent 5c64324a38
commit cb864e7aff

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(0o77) os.umask(0o755)
if method == 'build': if method == 'build':
self.build(conf) self.build(conf)