1
0
espelhamento de https://github.com/quitesimpleorg/hs9001.git sincronizado 2024-11-22 04:07:52 +01:00

Search: Properly exit on error

Esse commit está contido em:
lawl 2021-04-05 09:53:25 +02:00
commit 54697be895

Ver arquivo

@ -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)