Skip to content

Commit c50c477

Browse files
authored
cmd: fix module flag default value to github.com/open-telemetry (open-telemetry#58)
Signed-off-by: Koichi Shiraishi <[email protected]>
1 parent 4afd918 commit c50c477

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/root.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func Execute() error {
7676
cmd.Flags().StringVar(&cfg.Distribution.OtelColVersion, "otelcol-version", cfg.Distribution.OtelColVersion, "Which version of OpenTelemetry Collector to use as base")
7777
cmd.Flags().StringVar(&cfg.Distribution.OutputPath, "output-path", cfg.Distribution.OutputPath, "Where to write the resulting files")
7878
cmd.Flags().StringVar(&cfg.Distribution.Go, "go", "/usr/bin/go", "The Go binary to use during the compilation phase")
79-
cmd.Flags().StringVar(&cfg.Distribution.Module, "module", "github.com/jpkroehling/opentelemetry-collector-builder", "The Go module for the new distribution")
79+
cmd.Flags().StringVar(&cfg.Distribution.Module, "module", "github.com/open-telemetry/opentelemetry-collector-builder", "The Go module for the new distribution")
8080

8181
// version of this binary
8282
cmd.AddCommand(versionCmd)

0 commit comments

Comments
 (0)