Merge pull request #572 from brendandburns/fix

Change a != to a < to fix kubecfg.
pull/6/head
brendandburns 2014-07-22 22:54:09 -07:00
commit 09adbb962d
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())
}