From 72d2c0ed63c4abdb147d27ff555e32294f8a82fc Mon Sep 17 00:00:00 2001 From: Siddhartha Basu Date: Mon, 28 Oct 2024 15:09:57 -0500 Subject: [PATCH] feat(dagger/main.go): add --plaintext flag to execCmd for improved command execution The addition of the `--plaintext` flag enhances the command execution by ensuring that the output is not formatted, which can be useful for debugging or when the command is expected to handle plain text input. --- pulumi-ops/dagger/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pulumi-ops/dagger/main.go b/pulumi-ops/dagger/main.go index add726e..60612e3 100644 --- a/pulumi-ops/dagger/main.go +++ b/pulumi-ops/dagger/main.go @@ -319,6 +319,7 @@ func (pmo *PulumiOps) DeployFrontendThroughGithub( for idx := range strings.Split(pload.Application, ":") { execCmd = append( execCmd, + "--plaintext", fmt.Sprintf("'properties.apps[%d].tag'", idx), pload.DockerImageTag, )