diff --git a/cmd/configure/configure.go b/cmd/configure/configure.go index ebb653e0..e3b71a86 100644 --- a/cmd/configure/configure.go +++ b/cmd/configure/configure.go @@ -42,8 +42,9 @@ func (cfg *Configs) loadNonInteractive(cmd *cobra.Command) error { } var configureCmd = &cobra.Command{ - Use: "configure", - Short: "Configure authentication", + Use: "configure", + Short: "Configure authentication", + Hidden: true, RunE: func(cmd *cobra.Command, args []string) error { profile, err := cmd.Flags().GetString("profile") if err != nil { diff --git a/cmd/fs/fs.go b/cmd/fs/fs.go index 3aaca70f..3a886fc7 100644 --- a/cmd/fs/fs.go +++ b/cmd/fs/fs.go @@ -7,9 +7,10 @@ import ( // fsCmd represents the fs command var fsCmd = &cobra.Command{ - Use: "fs", - Short: "Filesystem related commands", - Long: `Commands to do DBFS operations.`, + Use: "fs", + Short: "Filesystem related commands", + Long: `Commands to do DBFS operations.`, + Hidden: true, } func init() { diff --git a/cmd/fs/ls.go b/cmd/fs/ls.go index 1df30959..ac192385 100644 --- a/cmd/fs/ls.go +++ b/cmd/fs/ls.go @@ -8,9 +8,10 @@ import ( // lsCmd represents the ls command var lsCmd = &cobra.Command{ - Use: "ls ", - Short: "Lists files", - Long: `Lists files`, + Use: "ls ", + Short: "Lists files", + Long: `Lists files`, + Hidden: true, RunE: func(cmd *cobra.Command, args []string) error { return fmt.Errorf("TODO")