summaryrefslogtreecommitdiff
path: root/branches.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 04:06:42 -0500
committerJeff Carr <[email protected]>2025-10-17 04:06:42 -0500
commit6ebc5c9e0a358b827233aba43e50f8c194e9cb32 (patch)
tree116c82194913babd5640f84f36705ee93fe19d58 /branches.go
parentfa498f31dfff7c7a5b9f63d2e5c004d400f3d756 (diff)
keep removing old stuffv0.0.184
Diffstat (limited to 'branches.go')
-rw-r--r--branches.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/branches.go b/branches.go
index fc1364c..05c08b6 100644
--- a/branches.go
+++ b/branches.go
@@ -96,7 +96,7 @@ func (f *Forge) DoAllCheckoutMaster() error {
found.Append(repo)
}
}
- f.PrintHumanTable(found)
+ found.PrintDefaultTB()
log.Printf("There are %d repos that are NOT on the master branch\n", found.Len())
return err
}
@@ -175,7 +175,7 @@ func (f *Forge) DoAllCheckoutUser(force bool) error {
found.Append(repo)
}
}
- f.PrintHumanTable(found)
+ found.PrintDefaultTB()
log.Printf("There are %d repos that are NOT on the user branch\n", found.Len())
return err
}
@@ -270,7 +270,7 @@ func (f *Forge) DoAllCheckoutDevel(force bool) error {
found.Append(repo)
}
}
- f.PrintHumanTable(found)
+ found.PrintDefaultTB()
log.Printf("There are %d repos that are NOT on the devel branch\n", found.Len())
return err
}