💚 fix ci review unchecked function error

pull/257/head
Antoine 4 years ago
parent 6d9d5a0cc4
commit 07be211bca
No known key found for this signature in database
GPG Key ID: 098FB66FC0475E70
  1. 5
      cmd/root.go

@ -66,7 +66,10 @@ All Nodes of a k3d cluster are part of the same docker network.`,
if flags.version {
printVersion()
} else {
cmd.Usage()
if err := cmd.Usage(); err != nil {
log.Errorln(err)
os.Exit(1)
}
}
},
}

Loading…
Cancel
Save