From 84891701bd8e0d7180f9b371040d8539334bde2b Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 23 May 2013 21:59:03 -0700 Subject: [PATCH] go fmt --- command/build/command.go | 4 ++-- config.go | 4 ++-- packer/plugin/provisioner.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/command/build/command.go b/command/build/command.go index ed1ba09aa..dd397dfb9 100644 --- a/command/build/command.go +++ b/command/build/command.go @@ -34,8 +34,8 @@ func (Command) Run(env packer.Environment, args []string) int { // The component finder for our builds components := &packer.ComponentFinder{ - Builder: env.Builder, - Hook: env.Hook, + Builder: env.Builder, + Hook: env.Hook, Provisioner: env.Provisioner, } diff --git a/config.go b/config.go index fb555cd6f..6a525c580 100644 --- a/config.go +++ b/config.go @@ -19,8 +19,8 @@ build = "packer-command-build" ` type config struct { - Builders map[string]string - Commands map[string]string + Builders map[string]string + Commands map[string]string Provisioners map[string]string } diff --git a/packer/plugin/provisioner.go b/packer/plugin/provisioner.go index 7391543b4..93e6fb1bb 100644 --- a/packer/plugin/provisioner.go +++ b/packer/plugin/provisioner.go @@ -9,7 +9,7 @@ import ( ) type cmdProvisioner struct { - p packer.Provisioner + p packer.Provisioner client *client }