diff options
Diffstat (limited to 'doClean.go')
| -rw-r--r-- | doClean.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -55,25 +55,25 @@ func doClean() error { // find repos not on master branch if repo.GetCurrentBranchName() != repo.GetMasterBranchName() { - found.AppendByGoPath(repo) + found.AppendByFullPath(repo) continue } // find dirty repos if repo.IsDirty() { - found.AppendByGoPath(repo) + found.AppendByFullPath(repo) continue } // find repos that still have a local user branch if repo.IsLocalBranch(repo.GetUserBranchName()) { - found.AppendByGoPath(repo) + found.AppendByFullPath(repo) continue } // find repos that still have a local devel branch if repo.IsLocalBranch(repo.GetDevelBranchName()) { - found.AppendByGoPath(repo) + found.AppendByFullPath(repo) continue } } |
