packer-cn/builder/virtualbox/common/export_opts.go

18 lines
302 B
Go
Raw Normal View History

package common
import (
"github.com/mitchellh/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
}