From c4252d21031ed432405be6a4f008831732068101 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 31 Aug 2025 12:16:38 -0500 Subject: maybe locks will work. maybe I can make a global repos.pb file? --- doClean.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doClean.go') diff --git a/doClean.go b/doClean.go index 42d2f4a..51230c6 100644 --- a/doClean.go +++ b/doClean.go @@ -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 } } -- cgit v1.2.3