diff --git a/post-processor/vagrant/artifact.go b/post-processor/vagrant/artifact.go index ecd36e740..1b4885b52 100644 --- a/post-processor/vagrant/artifact.go +++ b/post-processor/vagrant/artifact.go @@ -8,13 +8,13 @@ import ( const BuilderId = "mitchellh.post-processor.vagrant" type Artifact struct { - Path string + Path string Provider string } func NewArtifact(provider, path string) *Artifact { return &Artifact{ - Path: path, + Path: path, Provider: provider, } } diff --git a/post-processor/vagrant/post-processor.go b/post-processor/vagrant/post-processor.go index 420973d0b..04f860d20 100644 --- a/post-processor/vagrant/post-processor.go +++ b/post-processor/vagrant/post-processor.go @@ -13,7 +13,7 @@ var builtins = map[string]string{ "mitchellh.amazonebs": "aws", } -type Config struct{ +type Config struct { OutputPath string `mapstructure:"output"` }