diff options
| author | Jeff Carr <[email protected]> | 2024-12-11 01:14:24 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-11 01:14:24 -0600 |
| commit | 875435bc025e3b07d2f4a3fed50e78b9be58390a (patch) | |
| tree | f355bb362e30f707f33d7534ccf6c714107503e1 /stdin.go | |
| parent | b5a5732ead91ca963ca56341e8993c2c502345f5 (diff) | |
somewhat is starting to work
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") |
