This commit is contained in:
stephenma064 2017-07-11 19:47:54 -05:00 коммит произвёл GitHub
Родитель 110614c421
Коммит b2aa0dd8f6
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -164,6 +164,9 @@ func ReadConfiguration(file string) (conf Configuration, err error) {
}
}
err = gcfg.ReadFileInto(&conf, file)
if err != nil {
panic(err)
}
// If standard PGP based authentication is being used, validate these settings
// from the configuration file
if conf.GPG.UseAPIKeyAuth == "" {