diff --git a/cmd/dagger/cmd/compute.go b/cmd/dagger/cmd/compute.go index 856e3f08..1f15e4cb 100644 --- a/cmd/dagger/cmd/compute.go +++ b/cmd/dagger/cmd/compute.go @@ -21,9 +21,10 @@ import ( ) var computeCmd = &cobra.Command{ - Use: "compute CONFIG", - Short: "Compute a configuration", - Args: cobra.ExactArgs(1), + Use: "compute CONFIG", + Short: "Compute a configuration (DEPRECATED)", + Args: cobra.ExactArgs(1), + Hidden: true, PreRun: func(cmd *cobra.Command, args []string) { // Fix Viper bug for duplicate flags: // https://github.com/spf13/viper/issues/233