Merge pull request #552 from harshavardhana/pr_out_minio_config_directory_should_be_0700_not_os_modedir

This commit is contained in:
Harshavardhana 2015-04-30 17:40:15 -07:00
commit 72395798c8

View File

@ -50,7 +50,7 @@ func (c *Config) SetupConfig() error {
}
confPath := path.Join(u.HomeDir, ".minio")
if err := os.MkdirAll(confPath, os.ModeDir); err != nil {
if err := os.MkdirAll(confPath, 0700); err != nil {
return iodine.New(err, nil)
}