This commit is contained in:
Mitchell Hashimoto 2013-06-18 21:54:33 -07:00
parent 264e59d75d
commit b98df11cbf
5 changed files with 5 additions and 5 deletions

View File

@ -155,7 +155,7 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
b.runner.Run(state)
// If there are no AMIs, then jsut return
// If there are no AMIs, then just return
if _, ok := state["amis"]; !ok {
return nil, nil
}

View File

@ -5,7 +5,7 @@ type TestPostProcessor struct {
configVal interface{}
ppCalled bool
ppArtifact Artifact
ppUi Ui
ppUi Ui
}
func (pp *TestPostProcessor) Configure(v interface{}) error {

View File

@ -13,7 +13,7 @@ type TestPostProcessor struct {
configVal interface{}
ppCalled bool
ppArtifact packer.Artifact
ppUi packer.Ui
ppUi packer.Ui
}
func (pp *TestPostProcessor) Configure(v interface{}) error {

View File

@ -1,8 +1,8 @@
package main
import (
"github.com/mitchellh/packer/post-processor/compress"
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/packer/post-processor/compress"
)
func main() {

View File

@ -4,8 +4,8 @@ package compress
import (
"errors"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/mapstructure"
"github.com/mitchellh/packer/packer"
)
type Config struct {