MCPcopy Create free account
hub / github.com/openshift/origin / HasVendoredCodeChanges

Method HasVendoredCodeChanges

tools/rebasehelpers/util/git.go:65–72  ·  view source on GitHub ↗

HasVendoredCodeChanges verifies if the commit has any changes to Godeps/_workspace/ or vendor/ directories.

()

Source from the content-addressed store, hash-verified

63// HasVendoredCodeChanges verifies if the commit has any changes to Godeps/_workspace/
64// or vendor/ directories.
65func (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.
75func (c Commit) HasGodepsChanges() bool {

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected