summaryrefslogtreecommitdiff
path: root/doPatch.go
diff options
context:
space:
mode:
Diffstat (limited to 'doPatch.go')
-rw-r--r--doPatch.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/doPatch.go b/doPatch.go
index 23b2f19..06d1e85 100644
--- a/doPatch.go
+++ b/doPatch.go
@@ -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
}