()
| 170 | } |
| 171 | |
| 172 | func (*ExecuteCommand) Help() string { |
| 173 | helpText := ` |
| 174 | Usage: packer execute [options] PLUGIN |
| 175 | |
| 176 | Runs an internally-compiled version of a plugin from the packer binary. |
| 177 | |
| 178 | NOTE: this is an internal command and you should not call it yourself. |
| 179 | |
| 180 | Options: |
| 181 | |
| 182 | --protobuf: use protobuf for serialising data over-the-wire instead of gob. |
| 183 | ` |
| 184 | |
| 185 | return strings.TrimSpace(helpText) |
| 186 | } |
| 187 | |
| 188 | func (c *ExecuteCommand) Synopsis() string { |
| 189 | return "internal plugin command" |
no outgoing calls
no test coverage detected