summaryrefslogtreecommitdiff
path: root/stdin.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-11 01:14:24 -0600
committerJeff Carr <[email protected]>2024-12-11 01:14:24 -0600
commit875435bc025e3b07d2f4a3fed50e78b9be58390a (patch)
treef355bb362e30f707f33d7534ccf6c714107503e1 /stdin.go
parentb5a5732ead91ca963ca56341e8993c2c502345f5 (diff)
somewhat is starting to work
Diffstat (limited to 'stdin.go')
-rw-r--r--stdin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdin.go b/stdin.go
index 9093246..de81e3a 100644
--- a/stdin.go
+++ b/stdin.go
@@ -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")