You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.Error("Unable to check if %s is a file. Error: %v", CustomConf, err)
261
+
log.Error("Unable to check if %s is a file. Error: %v", customConf, err)
262
262
}
263
263
ifisFile {
264
-
iferr:=cfg.Append(CustomConf); err!=nil {
265
-
log.Fatal("Failed to load custom conf '%s': %v", CustomConf, err)
264
+
iferr:=cfg.Append(customConf); err!=nil {
265
+
log.Fatal("Failed to load custom conf '%s': %v", customConf, err)
266
266
}
267
267
} elseif!allowEmpty {
268
268
log.Fatal("Unable to find configuration file: %q.\nEnsure you are running in the correct environment or set the correct configuration file with -c.", CustomConf)
0 commit comments