diff options
| author | Jeff Carr <[email protected]> | 2025-09-04 22:16:50 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-04 22:16:50 -0500 |
| commit | 5dbfed7a317920777bb8ee643600e82c62d959fe (patch) | |
| tree | e5bcfaa0f28538ce56afc387caffe7dfc7d2dc56 /doPatch.go | |
| parent | c9d732800a0eadf9ba5ffee3154dd827c0eb7520 (diff) | |
detect patches that are applied already
Diffstat (limited to 'doPatch.go')
| -rw-r--r-- | doPatch.go | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -31,7 +31,12 @@ func doPatch() error { log.Info("Get Patchsets Failed", err) return err } - me.forge.Patchsets.PrintTable() + + old := findExpired() + // old.PrintTable() + for p := range old.IterAll() { + log.Info("patch", p.Filename, p.Namespace) + } return nil } |
