diff options
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 |
