plugin/builder-vmware: fix package

This commit is contained in:
Mitchell Hashimoto 2013-12-23 22:59:11 -07:00
parent 91392feb58
commit d73844c3ef
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
package main
import (
"github.com/mitchellh/packer/builder/vmware"
"github.com/mitchellh/packer/builder/vmware/iso"
"github.com/mitchellh/packer/packer/plugin"
)
@ -10,6 +10,6 @@ func main() {
if err != nil {
panic(err)
}
server.RegisterBuilder(new(vmware.Builder))
server.RegisterBuilder(new(iso.Builder))
server.Serve()
}