This commit is contained in:
Mitchell Hashimoto 2014-10-28 08:35:21 -07:00
parent 81d8cd0db4
commit e422a45449
8 changed files with 16 additions and 16 deletions

View File

@ -125,7 +125,7 @@ func WaitForState(conf *StateChangeConf) (i interface{}, err error) {
log.Printf("Waiting for state to become: %s", conf.Target)
sleepSeconds := 2
maxTicks := int(TimeoutSeconds() / sleepSeconds) + 1
maxTicks := int(TimeoutSeconds()/sleepSeconds) + 1
notfoundTick := 0
for {

View File

@ -26,7 +26,7 @@ func (d *Fusion6Driver) Clone(dst, src string) error {
if _, _, err := runAndLog(cmd); err != nil {
if strings.Contains(err.Error(), "parameters was invalid") {
return fmt.Errorf(
"Clone is not supported with your version of Fusion. Packer " +
"Clone is not supported with your version of Fusion. Packer "+
"only works with Fusion %s Professional or above. Please verify your version.", VMWARE_FUSION_VERSION)
}

View File

@ -1,8 +1,8 @@
package rpc
import (
"github.com/mitchellh/packer/packer"
"github.com/hashicorp/go-msgpack/codec"
"github.com/mitchellh/packer/packer"
"io"
"log"
"net/rpc"

View File

@ -2,8 +2,8 @@ package rpc
import (
"fmt"
"github.com/mitchellh/packer/packer"
"github.com/hashicorp/go-msgpack/codec"
"github.com/mitchellh/packer/packer"
"io"
"log"
"net/rpc"

View File

@ -111,7 +111,7 @@ func (p *PostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (pac
// The name of the provider for vagrant cloud, and vagrant
providerName := providerFromBuilderName(artifact.Id())
boxDownloadUrl, err := p.config.tpl.Process(p.config.BoxDownloadUrl, &boxDownloadUrlTemplate {
boxDownloadUrl, err := p.config.tpl.Process(p.config.BoxDownloadUrl, &boxDownloadUrlTemplate{
ArtifactId: artifact.Id(),
Provider: providerName,
})

View File

@ -2,9 +2,9 @@ package vagrantcloud
import (
"fmt"
"strings"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"strings"
)
type stepReleaseVersion struct {