diff options
| author | Jeff Carr <[email protected]> | 2025-01-12 06:35:13 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-12 06:35:13 -0600 |
| commit | 96c9588c6b0f3cab63109de54111a4cbd9b8effb (patch) | |
| tree | 008f8ee8f325f5a5c3b262b35e5a643f8a36fd14 /applyPatch.go | |
| parent | fcd25fa76a175148d6f01eebfe6a55bea06649bf (diff) | |
fixes due to new autogen function names
Diffstat (limited to 'applyPatch.go')
| -rw-r--r-- | applyPatch.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applyPatch.go b/applyPatch.go index 8576add..fc9ef76 100644 --- a/applyPatch.go +++ b/applyPatch.go @@ -23,7 +23,7 @@ func dumpPatchset(pset *forgepb.Patchset) bool { var count int var bad int - all := pset.SortByFilename() + all := pset.SortPatchesByFilename() for all.Scan() { p := all.Next() if IsValidPatch(p) { @@ -96,7 +96,7 @@ func applyPatchset(pset *forgepb.Patchset) error { log.Info("applyPatches() COMMENT", pset.Comment) log.Info("applyPatches() GIT_AUTHOR_NAME", pset.GetGitAuthorName()) log.Info("applyPatches() GIT_AUTHOR_EMAIL", pset.GetGitAuthorEmail()) - all := pset.SortByFilename() + all := pset.SortPatchesByFilename() for all.Scan() { p := all.Next() // log.Info("pset filename FILENAME IS REAL?", p.Filename, pset.Name, pset.Comment) |
