Fix a few linter errors.

This commit is contained in:
Ward Vandewege 2021-04-29 21:03:15 -04:00
parent 283ca3b6f8
commit 491fb0adb3
2 changed files with 1 additions and 2 deletions

View file

@ -50,7 +50,7 @@ func loadConfig(path string) error {
err := viper.ReadInConfig()
if err != nil {
return errors.New(fmt.Sprintf("Fatal error reading config file: %s \n", err))
return fmt.Errorf("Fatal error reading config file: %s \n", err)
}
// Collect any validation errors and return them all at once