Move strings.Join to DeployOverview
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
3wc
2025-09-08 22:05:41 -04:00
parent 02e352ae57
commit fa3e764fa6
5 changed files with 18 additions and 18 deletions

View File

@ -215,9 +215,9 @@ checkout as-is. Recipe commit hashes are also supported as values for
toDeployVersion,
"",
deployWarnMessages,
strings.Join(secretInfo, "\n"),
strings.Join(configInfo, "\n"),
strings.Join(imageInfo, "\n"),
secretInfo,
configInfo,
imageInfo,
); err != nil {
log.Fatal(err)
}

View File

@ -210,9 +210,9 @@ beforehand. See "abra app backup" for more.`),
chosenDowngrade,
"",
downgradeWarnMessages,
strings.Join(secretInfo, "\n"),
strings.Join(configInfo, "\n"),
strings.Join(imageInfo, "\n"),
secretInfo,
configInfo,
imageInfo,
); err != nil {
log.Fatal(err)
}

View File

@ -71,9 +71,9 @@ Passing "--prune/-p" does not remove those volumes.`),
config.NO_DOMAIN_DEFAULT,
"",
nil,
"",
"",
"",
nil,
nil,
nil,
); err != nil {
log.Fatal(err)
}

View File

@ -247,9 +247,9 @@ beforehand. See "abra app backup" for more.`),
chosenUpgrade,
upgradeReleaseNotes,
upgradeWarnMessages,
strings.Join(secretInfo, "\n"),
strings.Join(configInfo, "\n"),
strings.Join(imageInfo, "\n"),
secretInfo,
configInfo,
imageInfo,
); err != nil {
log.Fatal(err)
}