From 532a69c968bdf96d7cfbb4a50af79a0b42b4514e Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Fri, 8 May 2020 12:00:06 +0200 Subject: [PATCH] Update command.go --- command/command.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/command/command.go b/command/command.go index e71e3ddaa..3a11c4d7b 100644 --- a/command/command.go +++ b/command/command.go @@ -6,8 +6,8 @@ import "context" // use Packer. A call returns a int that will be the exit code of Packer, // everything else is up to the implementer. type PackerInterface interface { - Build(ctx context.Context, args BuildArgs) int - Console(ctx context.Context, args ConsoleArgs) int - Fix(ctx context.Context, args FixArgs) int - Validate(ctx context.Context, args ValidateArgs) int + Build(ctx context.Context, args *BuildArgs) int + Console(ctx context.Context, args *ConsoleArgs) int + Fix(ctx context.Context, args *FixArgs) int + Validate(ctx context.Context, args *ValidateArgs) int }