(args []string)
| 105 | } |
| 106 | |
| 107 | func (c *ExecuteCommand) Run(args []string) int { |
| 108 | cfg, ret := c.ParseArgs(args) |
| 109 | if ret != 0 { |
| 110 | return ret |
| 111 | } |
| 112 | |
| 113 | return c.RunContext(cfg) |
| 114 | } |
| 115 | |
| 116 | func (c *ExecuteCommand) RunContext(args *ExecuteArgs) int { |
| 117 | // Plugin will match something like "packer-builder-amazon-ebs" |
nothing calls this directly
no test coverage detected