Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Declare globprovider module path correctly #1276

Merged
merged 1 commit into from
Oct 10, 2023
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 otelcolbuilder/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ generate-sources:
@$(MAKE) _builder SKIP_COMPILATION=true
# the changes below allow us to use a custom config provider
# this requires some additions to the main.go file generated by the builder
go mod edit -require=github.com/SumoLogic/sumologic-otel-collector/pkg/configprovider/globprovider@v0.0.0-00010101000000-000000000000 cmd/go.mod
cd cmd && go get github.com/SumoLogic/sumologic-otel-collector/pkg/configprovider/globprovider@latest
patch cmd/main.go cmd/main.go.patch
patch cmd/main_windows.go cmd/main_windows.go.patch

Expand Down
2 changes: 1 addition & 1 deletion pkg/configprovider/globprovider/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/SumoLogic/sumologic-otel-collector/pkg/configprovider/glob
module github.com/SumoLogic/sumologic-otel-collector/pkg/configprovider/globprovider

go 1.20

Expand Down