1
0
Fork 0

Fixed credentials load error checking

master
Maxim Philippov 1 year ago
parent 370e1ae63d
commit d582da3c73

@ -318,7 +318,7 @@ func credentialStore(cfg *Config) (*auth.CredentialsStore, error) {
}
cs := auth.NewCredentialsStore()
if cs.Load(f); err != nil {
if err := cs.Load(f); err != nil {
return nil, err
}
return cs, nil

Loading…
Cancel
Save