mirror of
https://github.com/pgsty/minio.git
synced 2026-07-19 20:20:25 +03:00
Merge pull request #903 from technosophos/fix/902-missing-dot-minio
During auth generation, create directory if it does not exist.
This commit is contained in:
@@ -115,6 +115,9 @@ func genAuthFirstTime() (*AuthConfig, *probe.Error) {
|
|||||||
if isAuthConfigFileExists() {
|
if isAuthConfigFileExists() {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
if err := createAuthConfigPath(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
// Initialize new config, since config file doesn't exist yet
|
// Initialize new config, since config file doesn't exist yet
|
||||||
config := &AuthConfig{}
|
config := &AuthConfig{}
|
||||||
config.Version = "0.0.1"
|
config.Version = "0.0.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user