Updated imports of github.com/mitchellh/packer to new naming scheme github.com/hashicorp/packer

This commit is contained in:
Ali Rizvi-Santiago 2017-04-13 19:10:40 -05:00
parent 75fbfa0763
commit 6423525a33
2 changed files with 4 additions and 4 deletions

View File

@ -14,12 +14,12 @@ import (
"strings"
"time"
vmwcommon "github.com/hashicorp/packer/builder/vmware/common"
commonssh "github.com/hashicorp/packer/common/ssh"
"github.com/hashicorp/packer/communicator/ssh"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer"
"github.com/mitchellh/multistep"
vmwcommon "github.com/mitchellh/packer/builder/vmware/common"
gossh "golang.org/x/crypto/ssh"
)

View File

@ -12,9 +12,9 @@ import (
"strconv"
"strings"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/provisioner/shell"
"github.com/mitchellh/packer/template"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/provisioner/shell"
"github.com/hashicorp/packer/template"
"testing"
)