Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Cmd = &Z.Cmd{ Name: "install", Summary: "Get handful binaries on any system as fast as possible", Description: ` Bonzai branch to get handful binaries on any system as fast as possible `, Commands: []*Z.Cmd{help.Cmd}, Params: []string{"kubectl", "minikube"}, License: "Apache-2.0", Source: "https://github.com/murtaza-u/install", Issues: "https://github.com/murtaza-u/install/issues", Copyright: "(c) Murtaza Udaipurwala <murtaza@murtazau.xyz> (murtazau.xyz)", Site: "https://murtazau.xyz", MinParm: 1, Call: func(_ *Z.Cmd, args ...string) error { for _, arg := range args { var err error switch arg { case "kubectl": err = kubectl.Install() case "minikube": err = minikube.Install() default: err = fmt.Errorf("binary not supported: %s", arg) } if err != nil { return err } } return nil }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.