fix: copilot incorrectly removed a line of code

This commit is contained in:
Dominik Schmidt 2025-11-27 16:00:23 +01:00
parent da249044f9
commit f42a28c5f7
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ func NewPrintEnvCmd(globalCfg *config.GlobalImpl) *cobra.Command {
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.",
RunE: func(cmd *cobra.Command, args []string) error {
printEnvImpl := config.NewPrintEnvImpl(globalCfg, printEnvOptions)
err := config.NewCLIConfigImpl(printEnvImpl.GlobalImpl)
if err != nil {
return err