Skip to content

Commit

Permalink
Merge pull request hootsuite#193 from sixt-payment/fix-modified-files…
Browse files Browse the repository at this point in the history
…-filter

find project paths based on filtered modified files
  • Loading branch information
lkysow authored Nov 16, 2017
2 parents ec3d543 + 9c03615 commit a174c30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/events/project_finder.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func (p *ProjectFinder) FindModified(log *logging.SimpleLogger, modifiedFiles []
len(modifiedTerraformFiles), modifiedTerraformFiles)

var paths []string
for _, modifiedFile := range modifiedFiles {
for _, modifiedFile := range modifiedTerraformFiles {
paths = append(paths, p.getProjectPath(modifiedFile))
}
uniquePaths := p.unique(paths)
Expand Down

0 comments on commit a174c30

Please sign in to comment.