From 09eff4860ccea1ec4ce366a36c941852dc62cbed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20N=C3=A4gele?= Date: Mon, 10 Dec 2018 17:33:34 +0100 Subject: [PATCH] Fix typos (#65) --- pkg/chart/chart.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/chart/chart.go b/pkg/chart/chart.go index 0b606b6..8728e52 100644 --- a/pkg/chart/chart.go +++ b/pkg/chart/chart.go @@ -389,11 +389,11 @@ func (t *Testing) ComputeChangedChartDirectories() ([]string, error) { mergeBase, err := t.git.MergeBase(fmt.Sprintf("%s/%s", cfg.Remote, cfg.TargetBranch), "HEAD") if err != nil { - return nil, errors.Wrap(err, "Could not determined changed charts: Error identifying merge base.") + return nil, errors.Wrap(err, "Could not determine changed charts: Error identifying merge base.") } allChangedChartFiles, err := t.git.ListChangedFilesInDirs(mergeBase, cfg.ChartDirs...) if err != nil { - return nil, errors.Wrap(err, "Could not determined changed charts: Error icreating diff.") + return nil, errors.Wrap(err, "Could not determine changed charts: Error creating diff.") } var changedChartDirs []string