1
0
mirror of https://github.com/helm/chart-testing.git synced 2026-02-05 09:45:14 +01:00

Fix typos (#65)

This commit is contained in:
Reinhard Nägele
2018-12-10 17:33:34 +01:00
committed by GitHub
parent 045a8d4179
commit 09eff4860c

View File

@@ -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