diff --git a/internal/commands/image/inspect.go b/internal/commands/image/inspect.go index d1143ad9a..6a679383b 100644 --- a/internal/commands/image/inspect.go +++ b/internal/commands/image/inspect.go @@ -80,7 +80,7 @@ func runInspect(dockerCli command.Cli, appname string, opts inspectOptions) erro installation.SetParameter(internal.ParameterInspectFormatName, format) - if err := a.Run(&installation.Claim, nil, nil); err != nil { + if err := a.Run(&installation.Claim, nil); err != nil { return fmt.Errorf("inspect failed: %s\n%s", err, errBuf) } return nil diff --git a/internal/commands/image/render.go b/internal/commands/image/render.go index 4e95e595e..2786adb40 100644 --- a/internal/commands/image/render.go +++ b/internal/commands/image/render.go @@ -64,7 +64,7 @@ func runRender(dockerCli command.Cli, appname string, opts renderOptions) error } installation.Parameters[internal.ParameterRenderFormatName] = opts.formatDriver - if err := action.Run(&installation.Claim, nil, nil); err != nil { + if err := action.Run(&installation.Claim, nil); err != nil { return fmt.Errorf("render failed: %s\n%s", err, errBuf) } return nil