Change a != to a < to fix kubecfg.

pull/6/head
Brendan Burns 2014-07-22 22:45:17 -07:00
parent ec0f639a21
commit cf486a53b6
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ func main() {
}
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())
}