We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ee8345 commit 18907e1Copy full SHA for 18907e1
1 file changed
main.go
@@ -2,8 +2,11 @@ package main
2
3
import (
4
"github.com/clevyr/kubedb/cmd"
5
+ "os"
6
)
7
8
func main() {
- _ = cmd.Execute()
9
+ if err := cmd.Execute(); err != nil {
10
+ os.Exit(1)
11
+ }
12
}
0 commit comments