From 40cb5403b3c4039008d670b7579d7ce7fd9ecac8 Mon Sep 17 00:00:00 2001 From: sfunk Date: Wed, 16 Jan 2019 09:28:29 -0500 Subject: [PATCH] Fix formatting error --- context/context.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/context/context.go b/context/context.go index 597fd291..ab789468 100644 --- a/context/context.go +++ b/context/context.go @@ -44,7 +44,7 @@ type ExecutionContext struct { Mode Mode Verbose, Quiet, CatchSignals, DryRun, Describe, WarnOnConfigError, - IgnoreContextAndEnv, IgnoreConfigErrors, NoPrompt bool + IgnoreContextAndEnv, IgnoreConfigErrors, NoPrompt bool AnkhConfigPath string KubeConfigPath string @@ -337,7 +337,7 @@ func getAnkhFileForChart(ctx *ExecutionContext, singleChart string) (AnkhFile, e // Extract that now if possible. tokens := strings.Split(singleChart, "@") if len(tokens) > 2 { - ctx.Logger.Fatalf("Invalid chart '%v'. Too many `@` characters found. Chart must either be a name with no `@`, or in the combined `name@version` format") + ctx.Logger.Fatalf("Invalid chart '%v'. Too many `@` characters found. Chart must either be a name with no `@`, or in the combined `name@version` format", singleChart) } if len(tokens) == 2 { singleChart = tokens[0]