From 83e43f784d250ea5c290b222aa6b3429a7e5464c Mon Sep 17 00:00:00 2001 From: Travis Johnson Date: Thu, 6 Feb 2025 23:05:51 -0500 Subject: [PATCH] showing output is certainly not correct, debug logs can still show the output if necessary --- config/config_helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config_helpers.go b/config/config_helpers.go index 5217f85728..b137a89962 100644 --- a/config/config_helpers.go +++ b/config/config_helpers.go @@ -374,7 +374,7 @@ func RunCommand(ctx *ParsingContext, args []string) (string, error) { return cachedValue, nil } - cmdOutput, err := shell.RunShellCommandWithOutput(ctx, ctx.TerragruntOptions, currentPath, suppressOutput, false, args[0], args[1:]...) + cmdOutput, err := shell.RunShellCommandWithOutput(ctx, ctx.TerragruntOptions, currentPath, true, false, args[0], args[1:]...) if err != nil { return "", errors.New(err) }