Fix flag to disable login

This commit is contained in:
Luke Lambert 2021-11-12 12:39:52 -06:00
parent 80ce35b133
commit 55d06d4a01
2 changed files with 2 additions and 1 deletions

View file

@ -380,7 +380,7 @@ func LookupEnvOrBool(key string, defaultVal bool) bool {
if val, ok := os.LookupEnv(key); ok {
v, err := strconv.ParseBool(val)
if err != nil {
fmt.Fprintf(os.Stderr, "LookupEnvOrInt[%s]: %v\n", key, err)
fmt.Fprintf(os.Stderr, "LookupEnvOrBool[%s]: %v\n", key, err)
}
return v
}