Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Replace mitchellh dependencies with hashicorp #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hyperv/artifact.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions hyperv/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -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()
Expand Down
10 changes: 5 additions & 5 deletions post-processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down