This commit is contained in:
Mitchell Hashimoto 2014-05-01 14:24:19 -07:00
parent 19317fe92d
commit 5c5d62733f
7 changed files with 16 additions and 16 deletions

View File

@ -3,8 +3,8 @@ package iso
import (
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
parallelscommon "github.com/mitchellh/packer/builder/parallels/common"
"github.com/mitchellh/packer/packer"
)
// This step attaches the ISO to the virtual machine.

View File

@ -3,8 +3,8 @@ package iso
import (
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
parallelscommon "github.com/mitchellh/packer/builder/parallels/common"
"github.com/mitchellh/packer/packer"
"strconv"
)

View File

@ -3,8 +3,8 @@ package pvm
import (
"bytes"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
parallelscommon "github.com/mitchellh/packer/builder/parallels/common"
"github.com/mitchellh/packer/packer"
"testing"
)

View File

@ -131,7 +131,7 @@ func ParseTemplate(data []byte, vars map[string]string) (t *Template, err error)
if vCur.LessThan(vReq) {
return nil, fmt.Errorf(
"Template requires Packer version %s. " +
"Template requires Packer version %s. "+
"Running version is %s.",
vReq, vCur)
}