diff options
| author | Jeff Carr <[email protected]> | 2024-01-18 17:37:50 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-18 17:37:50 -0600 |
| commit | db3d481c5ff527feda775d8b1d873699c9dcc2f3 (patch) | |
| tree | 538c4f739408d1ccf639f2cf85a20c0deecbe91c /git.go | |
| parent | 8e9e19a14f7bd1b1cf4b3c8d0220dc84640c2ffd (diff) | |
more git change trackingv0.12.15
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'git.go')
| -rw-r--r-- | git.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -206,6 +206,7 @@ func (rs *RepoStatus) GetUserVersion() string { return name } +// TODO: make this report the error somewhere func (rs *RepoStatus) CheckBranches() bool { var hashCheck string var perfect bool = true @@ -243,7 +244,8 @@ func (rs *RepoStatus) CheckBranches() bool { if hash == hashCheck { log.Warn(hash, output, b) } else { - log.Warn(hash, output, b, "NOT THE SAME") + log.Warn("UNKNOWN BRANCHES IN THIS REPO") + rs.versionMessage.SetText("UNKNOWN BRANCHES") perfect = false parts := strings.Split(b, "/") log.Warn("git push", parts) |
