summaryrefslogtreecommitdiff
path: root/doCheckout.go
diff options
context:
space:
mode:
Diffstat (limited to 'doCheckout.go')
-rw-r--r--doCheckout.go6
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)