HasVendoredCodeChanges verifies if the commit has any changes to Godeps/_workspace/ or vendor/ directories.
()
| 63 | // HasVendoredCodeChanges verifies if the commit has any changes to Godeps/_workspace/ |
| 64 | // or vendor/ directories. |
| 65 | func (c Commit) HasVendoredCodeChanges() bool { |
| 66 | for _, file := range c.Files { |
| 67 | if file.HasVendoredCodeChanges() { |
| 68 | return true |
| 69 | } |
| 70 | } |
| 71 | return false |
| 72 | } |
| 73 | |
| 74 | // HasGodepsChanges verifies if the commit has any changes to Godeps/Godeps.json file. |
| 75 | func (c Commit) HasGodepsChanges() bool { |
nothing calls this directly
no test coverage detected