move stuff to gitpb
This commit is contained in:
parent
d183dffab4
commit
0a49db74f4
|
@ -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")
|
||||
|
|
2
http.go
2
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))
|
||||
|
|
Loading…
Reference in New Issue