From a3eb1167a776db344ccea427a76162d16bb49a45 Mon Sep 17 00:00:00 2001 From: Ben Vinson Date: Fri, 8 Jun 2018 16:50:54 -0600 Subject: [PATCH] Replace mitchellh dependencies with hashicorp --- hyperv/artifact.go | 2 +- hyperv/provider.go | 4 ++-- main.go | 2 +- post-processor.go | 10 +++++----- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/hyperv/artifact.go b/hyperv/artifact.go index 18e513a..c755043 100644 --- a/hyperv/artifact.go +++ b/hyperv/artifact.go @@ -9,7 +9,7 @@ import ( "os" "path/filepath" - "github.com/mitchellh/packer/packer" + "github.com/hashicorp/packer/packer" ) // This is the common builder ID to all of these artifacts. diff --git a/hyperv/provider.go b/hyperv/provider.go index 8075f2b..fe1a1b0 100644 --- a/hyperv/provider.go +++ b/hyperv/provider.go @@ -4,8 +4,8 @@ package hyperv import ( "fmt" - "github.com/mitchellh/packer/packer" - "github.com/mitchellh/packer/post-processor/vagrant" + "github.com/hashicorp/packer/packer" + "github.com/hashicorp/packer/post-processor/vagrant" "path/filepath" "os" ) diff --git a/main.go b/main.go index e221393..de50381 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,6 @@ package main -import "github.com/mitchellh/packer/packer/plugin" +import "github.com/hashicorp/packer/packer/plugin" func main() { server, err := plugin.Server() diff --git a/post-processor.go b/post-processor.go index 54b5970..fb3eef5 100644 --- a/post-processor.go +++ b/post-processor.go @@ -10,11 +10,11 @@ import ( "packer-post-processor-virtualbox-to-hyperv/hyperv" - vbox "github.com/mitchellh/packer/builder/virtualbox/common" - "github.com/mitchellh/packer/helper/config" - "github.com/mitchellh/packer/packer" - "github.com/mitchellh/packer/post-processor/vagrant" - "github.com/mitchellh/packer/template/interpolate" + vbox "github.com/hashicorp/packer/builder/virtualbox/common" + "github.com/hashicorp/packer/helper/config" + "github.com/hashicorp/packer/packer" + "github.com/hashicorp/packer/post-processor/vagrant" + "github.com/hashicorp/packer/template/interpolate" ) type Config struct {