summaryrefslogtreecommitdiff
path: root/doRelease.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-05 04:46:59 -0600
committerJeff Carr <[email protected]>2024-11-05 04:46:59 -0600
commitc79cdb30076a2a9a5093409886db8913f224c230 (patch)
tree7101f63b779d2a00b54cf5597831de57cc057e05 /doRelease.go
parente9a24fe0db10b97756afca3ec85f284ce9659710 (diff)
generates the go.wit.com file easily
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'doRelease.go')
-rw-r--r--doRelease.go4
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()})