3e3df5e4c6
* refact "cscli config show" * refact "cscli config backup" * refact "cscli confgi show-yaml" * refact "cscli config restore" * refact "cscli config feature-flags" * cscli restore: remove 'old-backup' option * lint (whitespace, wrapped errors)
26 lines
496 B
Go
26 lines
496 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func (cli *cliConfig) showYAML() error {
|
|
fmt.Println(mergedConfig)
|
|
return nil
|
|
}
|
|
|
|
func (cli *cliConfig) newShowYAMLCmd() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "show-yaml",
|
|
Short: "Displays merged config.yaml + config.yaml.local",
|
|
Args: cobra.ExactArgs(0),
|
|
DisableAutoGenTag: true,
|
|
RunE: func(_ *cobra.Command, _ []string) error {
|
|
return cli.showYAML()
|
|
},
|
|
}
|
|
|
|
return cmd
|
|
}
|