From e42b42e88221215d3ca3db1b02156b7d7e0b0abb Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Mon, 8 Sep 2025 14:59:26 -0400 Subject: [PATCH] chore: 4matting --- cli/internal/cli.go | 2 +- pkg/deploy/utils.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/internal/cli.go b/cli/internal/cli.go index 86b73233..1d32b475 100644 --- a/cli/internal/cli.go +++ b/cli/internal/cli.go @@ -19,5 +19,5 @@ var ( Minor bool NoDomainChecks bool Patch bool - ShowUnchanged bool + ShowUnchanged bool ) diff --git a/pkg/deploy/utils.go b/pkg/deploy/utils.go index e8e53e23..917dfdc2 100644 --- a/pkg/deploy/utils.go +++ b/pkg/deploy/utils.go @@ -172,7 +172,7 @@ func GatherConfigsForDeploy(cl *dockerClient.Client, app appPkg.App, compose *co if currentVersion, exists := currentConfigs[configName]; exists { if currentVersion == newVersion { - if (showUnchanged) { + if showUnchanged { configInfo = append(configInfo, fmt.Sprintf("%s: %s (unchanged)", configName, newVersion)) } } else {