From 0a49db74f4a5becf63ad3e1a416b77ff03b269e7 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 29 Nov 2024 23:18:03 -0600 Subject: [PATCH] move stuff to gitpb --- doRelease.go | 2 +- http.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doRelease.go b/doRelease.go index c3affc2..a4a3b82 100644 --- a/doRelease.go +++ b/doRelease.go @@ -57,7 +57,7 @@ func doRelease() bool { } else { all = append(all, []string{"git", "add", "-f", "go.sum"}) } - if ok, compiled, err := me.current.Status.IsProtobuf(); ok { + if ok, compiled, err := me.current.IsProtobuf(); ok { log.Info("\tIsProtobuf() == true") if err != nil { log.Info("\tERROR: There are protobuf files, but they are not compiled") diff --git a/http.go b/http.go index f59c3bb..3cd0b71 100644 --- a/http.go +++ b/http.go @@ -200,7 +200,7 @@ func okHandler(w http.ResponseWriter, r *http.Request) { } else { log.Info("IsPrivate() == false") } - if ok, compiled, err := me.current.Status.IsProtobuf(); ok { + if ok, compiled, err := me.current.IsProtobuf(); ok { log.Info(log.Sprint("IsProtobuf() == true compiled protobuf files = ", compiled)) if err != nil { log.Info(log.Sprint("IsProtobuf() == err", err))