summaryrefslogtreecommitdiff
path: root/doPatch.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-08 10:42:55 -0500
committerJeff Carr <[email protected]>2025-10-08 10:42:55 -0500
commit3a91f7cd691d6b5ba5dedeaa596426d08da7f92c (patch)
tree9425b6ed50df47adee2a3f6757560da09b93e88d /doPatch.go
parent6c60e24225760ea1ab33173e27c5764693788a9a (diff)
print footerv0.25.72v0.25.71
Diffstat (limited to 'doPatch.go')
-rw-r--r--doPatch.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/doPatch.go b/doPatch.go
index 87c8f48..72af28e 100644
--- a/doPatch.go
+++ b/doPatch.go
@@ -235,11 +235,13 @@ func showWorkRepos() bool {
// if no option is given to patch, list out the
// repos that have patches ready in them
found := findReposWithPatches()
+ found.SortNamespace()
if found.Len() == 0 {
log.Info("you currently have no repos with patches")
return false
} else {
- me.forge.PrintDefaultTB(found)
+ footer := me.forge.PrintDefaultTB(found)
+ log.Info("repos with patches or unsaved changes:", footer)
}
return true
}