diff options
| author | Jeff Carr <[email protected]> | 2025-08-31 12:16:38 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-31 12:16:38 -0500 |
| commit | c4252d21031ed432405be6a4f008831732068101 (patch) | |
| tree | 35853d100781756ea826e6e44d2a61340faaa911 /doCheckout.go | |
| parent | 9292eb18fa1ccec8229c3182c2dcbeab03d09e58 (diff) | |
maybe locks will work. maybe I can make a global repos.pb file?
Diffstat (limited to 'doCheckout.go')
| -rw-r--r-- | doCheckout.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doCheckout.go b/doCheckout.go index 2dbddff..809434d 100644 --- a/doCheckout.go +++ b/doCheckout.go @@ -142,7 +142,7 @@ func doAllCheckoutUser() error { for all.Scan() { repo := all.Next() if repo.GetCurrentBranchName() != repo.GetUserBranchName() { - found.AppendByGoPath(repo) + found.Append(repo) } } me.forge.PrintHumanTable(found) @@ -188,7 +188,7 @@ func doAllCheckoutDevel() error { for all.Scan() { repo := all.Next() if repo.GetCurrentBranchName() != repo.GetDevelBranchName() { - found.AppendByGoPath(repo) + found.Append(repo) } } me.forge.PrintHumanTable(found) @@ -255,7 +255,7 @@ func doAllCheckoutMaster() error { for all.Scan() { repo := all.Next() if repo.GetCurrentBranchName() != repo.GetMasterBranchName() { - found.AppendByGoPath(repo) + found.Append(repo) } } me.forge.PrintHumanTable(found) |
