diff options
| author | Jeff Carr <[email protected]> | 2025-09-05 12:53:19 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-05 12:53:19 -0500 |
| commit | 822fe38eee03193930dab310c6dba75a1bc1d6aa (patch) | |
| tree | 8522aac00f8bd7d68fd4124366ba4b910a7fbfd0 /patchset.config.go | |
| parent | 817107dc160071ca3fe1c196335d6747271f3c99 (diff) | |
work on patch tracking
Diffstat (limited to 'patchset.config.go')
| -rw-r--r-- | patchset.config.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/patchset.config.go b/patchset.config.go index c9ba7f0..4f8eedf 100644 --- a/patchset.config.go +++ b/patchset.config.go @@ -189,5 +189,10 @@ func (f *Forge) findPatch(newpatch *Patch) bool { func (f *Forge) IsPatchApplied(newpatch *Patch) (*gitpb.Repo, bool) { log.Info("todo: find namespace and repo for patch", newpatch.Filename) + if f.findPatch(newpatch) { + log.Info("\tfindPatch() patch was found") + } else { + log.Info("\tfindPatch() patch was not found") + } return nil, false } |
