Commit 32510130 authored by Matt Butcher's avatar Matt Butcher Committed by GitHub

Merge pull request #1874 from mkumatag/fix_segv

Fix SIGSEGV fault
parents 0ff55c92 851ca79c
......@@ -87,7 +87,8 @@ func main() {
func start(c *cobra.Command, args []string) {
clientset, err := kube.New(nil).ClientSet()
if err != nil {
fmt.Fprintf(os.Stderr, "Cannot initialize Kubernetes connection: %s", err)
fmt.Fprintf(os.Stderr, "Cannot initialize Kubernetes connection: %s\n", err)
os.Exit(1)
}
switch store {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment