diff options
| author | Jeff Carr <[email protected]> | 2025-10-13 06:22:20 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-13 06:22:20 -0500 |
| commit | 483eaad4694cfba3f9d8de31313356b819433885 (patch) | |
| tree | 30b6ce230f418fde682e8b4d9a045904da031425 | |
| parent | 6e8c4dd5858b116b1c7eaac158ef8b54941b0ad4 (diff) | |
tracking down obscurerer and obscurerearer edge cases
| -rw-r--r-- | find.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -217,17 +217,17 @@ func cloneReposWithPatches() *gitpb.Repos { continue } if repo.IsLocalBranchVerbose(repo.GetUserBranchName()) { - log.Info("BRANCH IS LOCAL", THEBRANCH) + log.Info(repo.FullPath, "BRANCH IS LOCAL", THEBRANCH) // everthing is actually normal continue } else { - log.Info("BRANCH IS NOT LOCAL", THEBRANCH) + log.Info(repo.FullPath, "BRANCH IS NOT LOCAL", THEBRANCH) repo.RunVerbose([]string{"bash", "-c", "git show-ref |grep -v tags"}) } stop += 1 if stop < 5 { for t := range repo.Tags.IterAll() { - log.Info(repo.Namespace, t.Refname) + log.Info("pb thinks it has:", repo.Namespace, t.Refname) } } else { panic("stop") |
