Skip to content

Commit 01194cd

Browse files
tenthirtyamlbajolet-hashicorp
authored andcommitted
fix: remove use of snake case
Replaces use of `snake_case` with `camelCase`. Signed-off-by: Ryan Johnson <[email protected]>
1 parent e6c38d5 commit 01194cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/iso"
1414
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/supervisor"
1515
"github.com/hashicorp/packer-plugin-vsphere/post-processor/vsphere"
16-
vsphere_template "github.com/hashicorp/packer-plugin-vsphere/post-processor/vsphere-template"
16+
vsphereTemplate "github.com/hashicorp/packer-plugin-vsphere/post-processor/vsphere-template"
1717
"github.com/hashicorp/packer-plugin-vsphere/version"
1818
)
1919

@@ -23,7 +23,7 @@ func main() {
2323
pps.RegisterBuilder("clone", new(clone.Builder))
2424
pps.RegisterBuilder("supervisor", new(supervisor.Builder))
2525
pps.RegisterPostProcessor(plugin.DEFAULT_NAME, new(vsphere.PostProcessor))
26-
pps.RegisterPostProcessor("template", new(vsphere_template.PostProcessor))
26+
pps.RegisterPostProcessor("template", new(vsphereTemplate.PostProcessor))
2727
pps.SetVersion(version.PluginVersion)
2828
err := pps.Run()
2929
if err != nil {

0 commit comments

Comments
 (0)