Commit 09adbb96 authored by brendandburns's avatar brendandburns

Merge pull request #572 from brendandburns/fix

Change a != to a < to fix kubecfg.
parents ec0f639a cf486a53
...@@ -157,7 +157,7 @@ func main() { ...@@ -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())
} }
......
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