summaryrefslogtreecommitdiff
path: root/doPatch.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-30 19:47:48 -0600
committerJeff Carr <[email protected]>2025-01-30 19:47:48 -0600
commit5f0a271bf767a35370b6fcf078847f9fceba8d7d (patch)
treed5918f1bc7b9951b8d356d1b722a903188149ebb /doPatch.go
parent25fe17d59cd4081ac1204e9686859af773bd69c1 (diff)
almost there on a first git am attemptv0.22.66
Diffstat (limited to 'doPatch.go')
-rw-r--r--doPatch.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/doPatch.go b/doPatch.go
index b1d71cb..c441b3e 100644
--- a/doPatch.go
+++ b/doPatch.go
@@ -161,5 +161,13 @@ func doPatchGet() error {
return err
}
log.Info("Got Patchsets ok", psets.Uuid)
+
+ log.Info("got psets len", len(psets.Patchsets))
+ all := psets.SortByName()
+ for all.Scan() {
+ pset := all.Next()
+ // log.Info("pset name =", pset.Name)
+ dumpPatchset(pset)
+ }
return nil
}