diff options
| author | Jeff Carr <[email protected]> | 2024-11-05 05:58:54 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-05 05:58:54 -0600 |
| commit | e6f883a9b5e62cb5d52e5c2dbc37d3d15db11b12 (patch) | |
| tree | 620db1fe82c940fe78b17a9bd160d4c0cfc481b0 /structs.go | |
| parent | 8eb7501855d71941784d27b6dfe71c7a53699f0a (diff) | |
final commits before releasev0.22.6
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -10,7 +10,7 @@ type RepoStatus struct { changed bool // keeps track of changes that might have happened changes string tags map[string]string - InitOk bool // it takes a second or so to init these + InitOk bool // it takes a second or so to init these // used to temporarily tell the automation tools to // try to ignore this repo's changes and state @@ -23,11 +23,13 @@ type RepoStatus struct { Tags *GitTagBox // a box of all the git tags dirtyLabel *gadgets.OneLiner - dirtyList string // the output from git status --porcelain + dirtyList string // the output from git status --porcelain readOnly *gadgets.OneLiner gitState *gadgets.OneLiner - primitive *gadgets.OneLiner - private *gadgets.OneLiner + + primitive *gadgets.OneLiner // aka: doesn't have a go.sum file + private *gadgets.OneLiner // it's not possible to publish this to pkg.go.dev + protobuf *gadgets.OneLiner // is this repo a protobuf repo? path *gadgets.OneLiner goSrcPath *gadgets.OneLiner |
