mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-03 17:30:00 +00:00
Merge pull request #572 from brendandburns/fix
Change a != to a < to fix kubecfg.
This commit is contained in:
commit
09adbb962d
@ -157,7 +157,7 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func executeAPIRequest(method string, s *kube_client.Client) bool {
|
func executeAPIRequest(method string, s *kube_client.Client) bool {
|
||||||
if len(flag.Args()) != 2 {
|
if len(flag.Args()) < 2 {
|
||||||
glog.Fatalf("usage: kubecfg [OPTIONS] get|list|create|update|delete <%s>[/<id>]", prettyWireStorage())
|
glog.Fatalf("usage: kubecfg [OPTIONS] get|list|create|update|delete <%s>[/<id>]", prettyWireStorage())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user