diff --git a/completers/dagger_completer/cmd/config.go b/completers/dagger_completer/cmd/config.go index ead70964e7..08d70369ae 100644 --- a/completers/dagger_completer/cmd/config.go +++ b/completers/dagger_completer/cmd/config.go @@ -10,7 +10,6 @@ var configCmd = &cobra.Command{ Use: "config", Short: "Get or set the configuration of a Dagger module", GroupID: "module", - Aliases: []string{"mod"}, Run: func(cmd *cobra.Command, args []string) {}, } diff --git a/completers/dagger_completer/cmd/publish.go b/completers/dagger_completer/cmd/publish.go index 7efba8f641..1890586bcd 100644 --- a/completers/dagger_completer/cmd/publish.go +++ b/completers/dagger_completer/cmd/publish.go @@ -10,6 +10,7 @@ var publishCmd = &cobra.Command{ Use: "publish", Short: "Publish a Dagger module to the Daggerverse", GroupID: "module", + Hidden: true, Run: func(cmd *cobra.Command, args []string) {}, } diff --git a/completers/dagger_completer/cmd/up.go b/completers/dagger_completer/cmd/up.go deleted file mode 100644 index 859e040514..0000000000 --- a/completers/dagger_completer/cmd/up.go +++ /dev/null @@ -1,19 +0,0 @@ -package cmd - -import ( - "github.com/rsteube/carapace" - "github.com/spf13/cobra" -) - -var upCmd = &cobra.Command{ - Use: "up", - Short: "Start a service and expose its ports to the host", - Hidden: true, - Run: func(cmd *cobra.Command, args []string) {}, -} - -func init() { - carapace.Gen(upCmd).Standalone() - - rootCmd.AddCommand(upCmd) -}