mirror of
https://github.com/minio/minio.git
synced 2025-01-27 06:33:18 -05:00
Minio config directory should be 0700 not os.ModeDir
This commit is contained in:
parent
4ea186729a
commit
2de81c8a3c
@ -50,7 +50,7 @@ func (c *Config) SetupConfig() error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
confPath := path.Join(u.HomeDir, ".minio")
|
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)
|
return iodine.New(err, nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user