Remove unneeded property

Signed-off-by: Joel Longtine <joel@dagger.io>
This commit is contained in:
Joel Longtine 2022-03-02 13:59:01 -07:00
parent d09b62b1e2
commit cc84325ba5

View File

@ -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)
},
}