Skip to content
Merged
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
2 changes: 1 addition & 1 deletion compiler/lib/module_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func NewModuleService(protoconfRoot string) *ModuleService {
func (m *ModuleService) getProtoconfPath() string {
path, err := filepath.Abs(m.Config.ProtoconfPath)
if err != nil {
slog.Error("error", err)
slog.Error("error", "err", err)
os.Exit(1)
}
return path
Expand Down
5 changes: 2 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ require (
github.com/go-git/go-git/v5 v5.13.0
github.com/google/uuid v1.6.0
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/hashicorp/go-getter v1.7.4
github.com/hashicorp/go-getter v1.7.9
github.com/jhump/protoreflect v1.16.0
github.com/kvtools/consul v1.0.2
github.com/kvtools/etcdv3 v1.0.2
Expand All @@ -41,7 +41,7 @@ require (
go.opentelemetry.io/otel/trace v1.27.0
go.starlark.net v0.0.0-20240314022150-ee8ed142361c
golang.org/x/mod v0.19.0
golang.org/x/net v0.33.0
golang.org/x/net v0.34.0
golang.org/x/sync v0.11.0
google.golang.org/grpc v1.64.0
google.golang.org/protobuf v1.34.1
Expand Down Expand Up @@ -134,7 +134,6 @@ require (
github.com/mattn/go-runewidth v0.0.4 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
Expand Down
Loading