Skip to content

Commit

Permalink
Update Packer package namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
benwebber committed Mar 4, 2018
1 parent 93df36d commit 43f004b
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ help:
@echo "release push tags and binaries upstream"

.depend:
go get -d github.com/mitchellh/packer
go get -d github.com/hashicorp/packer

clean:
go clean -x
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/benwebber/packer-post-processor-vhd/vhd"
"github.com/mitchellh/packer/packer/plugin"
"github.com/hashicorp/packer/packer/plugin"
)

func main() {
Expand Down
12 changes: 6 additions & 6 deletions vhd/post-processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import (
"fmt"
"os"

"github.com/mitchellh/packer/builder/qemu"
vboxcommon "github.com/mitchellh/packer/builder/virtualbox/common"
"github.com/mitchellh/packer/common"
"github.com/mitchellh/packer/helper/config"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/template/interpolate"
"github.com/hashicorp/packer/builder/qemu"
vboxcommon "github.com/hashicorp/packer/builder/virtualbox/common"
"github.com/hashicorp/packer/common"
"github.com/hashicorp/packer/helper/config"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/template/interpolate"
)

// Map Builders to Providers: these are the types of artifacts we know how to
Expand Down
2 changes: 1 addition & 1 deletion vhd/post-processor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package vhd
import (
"testing"

"github.com/mitchellh/packer/packer"
"github.com/hashicorp/packer/packer"
)

func TestPostProcessor_ImplementsPostProcessor(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion vhd/provider.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package vhd

import "github.com/mitchellh/packer/packer"
import "github.com/hashicorp/packer/packer"

// A Provider wraps logic necessary to convert specific builder artifacts to
// VHD.
Expand Down
4 changes: 2 additions & 2 deletions vhd/qemu.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os/exec"
"strings"

"github.com/mitchellh/packer/builder/qemu"
"github.com/mitchellh/packer/packer"
"github.com/hashicorp/packer/builder/qemu"
"github.com/hashicorp/packer/packer"
)

// QEMUProvider satisfies the Provider interface.
Expand Down
6 changes: 3 additions & 3 deletions vhd/virtualbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"path/filepath"
"strings"

vboxcommon "github.com/mitchellh/packer/builder/virtualbox/common"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/post-processor/vagrant"
vboxcommon "github.com/hashicorp/packer/builder/virtualbox/common"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/post-processor/vagrant"
)

// VirtualBoxProvider satisfies the Provider interface.
Expand Down

0 comments on commit 43f004b

Please sign in to comment.