Minio config directory should be 0700 not os.ModeDir

This commit is contained in:
Harshavardhana 2015-04-30 15:42:47 -07:00
parent 4ea186729a
commit 2de81c8a3c

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)
}