Search: Properly exit on error

This commit is contained in:
lawl 2021-04-05 09:53:25 +02:00
parent da945dce2d
commit 54697be895
1 changed files with 1 additions and 0 deletions

View File

@ -156,6 +156,7 @@ func main() {
} else if cmd == "search" {
if argslen < 2 {
fmt.Fprint(os.Stderr, "Please provide the search query\n")
os.Exit(1)
}
q := strings.Join(args[1:], " ")
search(conn, q)