summaryrefslogtreecommitdiff
path: root/stdin.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-13 16:16:18 -0600
committerJeff Carr <[email protected]>2024-12-13 16:16:18 -0600
commit8c68cff7624dd797533122509a7d86ed316090c5 (patch)
tree5cae23d1f096a619180533c24f19380970cca121 /stdin.go
parent02bbd75ce1d80f845673c30a004e35f9ce491ab6 (diff)
don't work on non-master branches
Diffstat (limited to 'stdin.go')
-rw-r--r--stdin.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdin.go b/stdin.go
index de81e3a..a28e3fa 100644
--- a/stdin.go
+++ b/stdin.go
@@ -41,15 +41,15 @@ func simpleStdin(b bool, s []string) {
return
case "n":
log.Info("got n")
- badExit(err)
+ badExit(nil, err)
case "":
if b {
return
} else {
- badExit(err)
+ badExit(nil, err)
}
default:
- badExit(err)
+ badExit(nil, err)
}
}
}