Make default config file simpler. Closes #364 (#375)

This commit is contained in:
Gabe Kangas
2020-11-19 08:48:33 -08:00
committed by GitHub
parent a2c088d401
commit d4426f1dff
6 changed files with 36 additions and 4 deletions

View File

@@ -106,7 +106,7 @@ type S3 struct {
func (c *config) load(filePath string) error {
if !utils.DoesFileExists(filePath) {
log.Fatal("ERROR: valid config.yaml is required. Copy config-example.yaml to config.yaml and edit")
log.Fatal("ERROR: valid config.yaml is required. Copy config-default.yaml to config.yaml and edit")
}
yamlFile, err := ioutil.ReadFile(filePath)