diff options
| author | Jeff Carr <[email protected]> | 2025-11-05 15:29:11 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-11-05 15:29:11 -0600 |
| commit | 99f1b719cdee67353d12499308fca117cafd05f3 (patch) | |
| tree | 2e1d7d1ddf437d6ed7230eb322e236bf1b818a4d /doNormal.go | |
| parent | c224d5d04f67dc05dd65e9b1daa2226b64aaeb4d (diff) | |
compiles. GitTag.proto is gone
Diffstat (limited to 'doNormal.go')
| -rw-r--r-- | doNormal.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doNormal.go b/doNormal.go index aed713a..e649731 100644 --- a/doNormal.go +++ b/doNormal.go @@ -205,10 +205,10 @@ func checkNormalRepoState(repo *gitpb.Repo) error { return ErrorLocalMasterBranch } - if repo.Tags.Master == nil { + if repo.MasterStat == nil { if found := repo.GetRemoteTag(repo.GetMasterBranchName()); found != nil { // log.Info("found master tag ", repo.FullPath, found) - repo.Tags.Master = proto.Clone(found).(*gitpb.GitTag) + repo.MasterStat = proto.Clone(found).(*gitpb.Stat) config.SetChanged("repos", true) } else { log.Info("not found master tag (Reload() ?)", repo.FullPath) |
