Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions build
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ gen_version

echo "Building metad ..."
mkdir -p bin

go mod init

# fix google.golang.org/grpc/naming: module google.golang.org/grpc@latest found (v1.37.0), but does not contain package google.golang.org/grpc/naming
# https://github.com/yunify/metad/issues/24
go mod edit -replace google.golang.org/[email protected]=google.golang.org/[email protected]

go mod vendor
go mod tidy

go build -o $OUTPUT .

revert_version
2 changes: 1 addition & 1 deletion log/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)

type LogFormatter struct {
Expand Down