1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

rbinstall.rb: set umask 077

* tool/rbinstall.rb: default umask to prohibit group/others from
  reading/writing/executing.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49841 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-03-04 01:34:11 +00:00
parent 83a27c8703
commit d7628fcfd3

View file

@ -26,7 +26,7 @@ rescue LoadError
end
STDOUT.sync = true
File.umask(0222)
File.umask(077)
def parse_args(argv = ARGV)
$mantype = 'doc'