summaryrefslogtreecommitdiff
path: root/doNormal.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-13 05:32:19 -0500
committerJeff Carr <[email protected]>2025-09-13 05:32:19 -0500
commitf4d60d1fb952697c9de93534572d0aa108aa6506 (patch)
treeedd85f8b5448f0789258cea58fcc1681bb051c4a /doNormal.go
parent72d728d4e7104274067bde712373504dd47c1780 (diff)
work on a new repo Scan() function
Diffstat (limited to 'doNormal.go')
-rw-r--r--doNormal.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/doNormal.go b/doNormal.go
index 964c8ab..4c773d0 100644
--- a/doNormal.go
+++ b/doNormal.go
@@ -61,6 +61,11 @@ func checkNormalRepoState(repo *gitpb.Repo) error {
if repo.GetUserBranchName() == "" {
return log.Errorf("user branch name blank")
}
+ if repo.GetGoPath() == repo.GetNamespace() {
+ // log.Info(repo.FullPath, "gopath == namespace", repo.GetGoPath(), repo.GetNamespace())
+ } else {
+ log.Info(repo.FullPath, "gopath != namespace", repo.GetGoPath(), repo.GetNamespace())
+ }
repo.MakeLocalDevelBranch()
repo.VerifyRemoteAndLocalBranches(repo.GetDevelBranchName())