diff options
| author | Jeff Carr <[email protected]> | 2025-09-13 05:32:19 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-13 05:32:19 -0500 |
| commit | f4d60d1fb952697c9de93534572d0aa108aa6506 (patch) | |
| tree | edd85f8b5448f0789258cea58fcc1681bb051c4a /doNormal.go | |
| parent | 72d728d4e7104274067bde712373504dd47c1780 (diff) | |
work on a new repo Scan() function
Diffstat (limited to 'doNormal.go')
| -rw-r--r-- | doNormal.go | 5 |
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()) |
