diff options
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()}) |
