Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
unguiculus committed Dec 10, 2018
1 parent 045a8d4 commit bbd1492
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/chart/chart.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bbd1492

Please sign in to comment.