mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-20 23:11:40 -04:00
18 lines
302 B
Go
18 lines
302 B
Go
package common
|
|
|
|
import (
|
|
"github.com/hashicorp/packer/template/interpolate"
|
|
)
|
|
|
|
type ExportOpts struct {
|
|
ExportOpts []string `mapstructure:"export_opts"`
|
|
}
|
|
|
|
func (c *ExportOpts) Prepare(ctx *interpolate.Context) []error {
|
|
if c.ExportOpts == nil {
|
|
c.ExportOpts = make([]string, 0)
|
|
}
|
|
|
|
return nil
|
|
}
|