From c50c4775c0fd445d622ee2332e4a2981898dc71b Mon Sep 17 00:00:00 2001 From: Koichi Shiraishi Date: Mon, 19 Jul 2021 16:30:08 +0900 Subject: [PATCH] cmd: fix module flag default value to github.com/open-telemetry (#58) Signed-off-by: Koichi Shiraishi --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 0eb823b23a3..626db0e702a 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -76,7 +76,7 @@ func Execute() error { cmd.Flags().StringVar(&cfg.Distribution.OtelColVersion, "otelcol-version", cfg.Distribution.OtelColVersion, "Which version of OpenTelemetry Collector to use as base") cmd.Flags().StringVar(&cfg.Distribution.OutputPath, "output-path", cfg.Distribution.OutputPath, "Where to write the resulting files") cmd.Flags().StringVar(&cfg.Distribution.Go, "go", "/usr/bin/go", "The Go binary to use during the compilation phase") - cmd.Flags().StringVar(&cfg.Distribution.Module, "module", "github.com/jpkroehling/opentelemetry-collector-builder", "The Go module for the new distribution") + cmd.Flags().StringVar(&cfg.Distribution.Module, "module", "github.com/open-telemetry/opentelemetry-collector-builder", "The Go module for the new distribution") // version of this binary cmd.AddCommand(versionCmd)