diff options
Diffstat (limited to 'stdin.go')
| -rw-r--r-- | stdin.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ func simpleStdin(b bool, s []string) { for scanner.Scan() { s := scanner.Text() s = strings.TrimSpace(s) - // s = strings.Lower(s) + s = strings.ToLower(s) switch s { case "y": log.Info("got y") |
