fix: copilot incorrectly removed a line of code
This commit is contained in:
parent
da249044f9
commit
f42a28c5f7
|
|
@ -16,6 +16,7 @@ func NewPrintEnvCmd(globalCfg *config.GlobalImpl) *cobra.Command {
|
||||||
Short: "Print parsed environment configuration",
|
Short: "Print parsed environment configuration",
|
||||||
Long: "Print parsed environment configuration including merged values (with decrypted secrets). This command outputs the effective environment configuration after merging values and decrypting secrets, in either YAML or JSON format.",
|
Long: "Print parsed environment configuration including merged values (with decrypted secrets). This command outputs the effective environment configuration after merging values and decrypting secrets, in either YAML or JSON format.",
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
|
printEnvImpl := config.NewPrintEnvImpl(globalCfg, printEnvOptions)
|
||||||
err := config.NewCLIConfigImpl(printEnvImpl.GlobalImpl)
|
err := config.NewCLIConfigImpl(printEnvImpl.GlobalImpl)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue