diff --git a/cmd/dagger/cmd/project/init.go b/cmd/dagger/cmd/project/init.go index 40f7fa14..752be5eb 100644 --- a/cmd/dagger/cmd/project/init.go +++ b/cmd/dagger/cmd/project/init.go @@ -9,7 +9,6 @@ import ( "go.dagger.io/dagger/cmd/dagger/cmd/common" "go.dagger.io/dagger/cmd/dagger/logger" "go.dagger.io/dagger/pkg" - "go.dagger.io/dagger/telemetry" ) var sep = string(os.PathSeparator) @@ -41,7 +40,9 @@ var initCmd = &cobra.Command{ lg.Fatal().Err(err).Msg("failed to initialize project") } - <-common.TrackCommand(ctx, cmd, &telemetry.Property{}) + // TODO: Add telemtry for init + <-common.TrackCommand(ctx, cmd) + }, }