(cmd *kingpin.CmdClause)
| 181 | } |
| 182 | |
| 183 | func executeCmd(cmd *kingpin.CmdClause) *kingpin.CmdClause { |
| 184 | selectorFlags(cmd) |
| 185 | showTraceFlag(cmd) |
| 186 | askForSudoPasswdFlag(cmd) |
| 187 | getSudoPasswdCommand(cmd) |
| 188 | timeoutFlag(cmd) |
| 189 | deploymentArg(cmd) |
| 190 | cmd. |
| 191 | Arg("command", "Command to execute"). |
| 192 | Required(). |
| 193 | StringsVar(&executeCommand) |
| 194 | cmd.NoInterspersed = true |
| 195 | return cmd |
| 196 | } |
| 197 | |
| 198 | func deployCmd(cmd *kingpin.CmdClause) *kingpin.CmdClause { |
| 199 | selectorFlags(cmd) |
no test coverage detected