From 6423525a33562ca891fef4c8ab89b833a9f70971 Mon Sep 17 00:00:00 2001 From: Ali Rizvi-Santiago Date: Thu, 13 Apr 2017 19:10:40 -0500 Subject: [PATCH] Updated imports of github.com/mitchellh/packer to new naming scheme github.com/hashicorp/packer --- builder/vmware/iso/driver_esx5.go | 2 +- builder/vmware/iso/step_create_vmx_test.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/builder/vmware/iso/driver_esx5.go b/builder/vmware/iso/driver_esx5.go index d2f00ea81..3f18656d0 100644 --- a/builder/vmware/iso/driver_esx5.go +++ b/builder/vmware/iso/driver_esx5.go @@ -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" ) diff --git a/builder/vmware/iso/step_create_vmx_test.go b/builder/vmware/iso/step_create_vmx_test.go index 7f5c1d91c..31177957f 100644 --- a/builder/vmware/iso/step_create_vmx_test.go +++ b/builder/vmware/iso/step_create_vmx_test.go @@ -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" )