diff options
| author | Jeff Carr <[email protected]> | 2024-11-05 04:46:59 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-05 04:46:59 -0600 |
| commit | c79cdb30076a2a9a5093409886db8913f224c230 (patch) | |
| tree | 7101f63b779d2a00b54cf5597831de57cc057e05 /doRelease.go | |
| parent | e9a24fe0db10b97756afca3ec85f284ce9659710 (diff) | |
generates the go.wit.com file easily
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'doRelease.go')
| -rw-r--r-- | doRelease.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doRelease.go b/doRelease.go index f220927..878fb4b 100644 --- a/doRelease.go +++ b/doRelease.go @@ -45,6 +45,10 @@ func doRelease() bool { } else { all = append(all, []string{"git", "add", "-f", "go.sum"}) } + if me.current.Status.IsProtobuf() { + log.Info("\tshould add protobuf files here!") + //all = append(all, []string{"git", "add", "-f", "go.sum"}) + } all = append(all, []string{"git", "commit", "-m", me.releaseReasonS}) all = append(all, []string{"git", "push"}) all = append(all, []string{"git", "tag", "-m", me.releaseReasonS, me.release.version.String()}) |
