Skip to content

Commit b7a3985

Browse files
committed
improving debugging for other issue
1 parent 8fc48a8 commit b7a3985

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ func main() {
390390
newChartFlag := cli.BoolFlag{
391391
Name: "new-chart",
392392
Usage: `Usage:
393-
-new-chart=<false or true>
393+
--new-chart=<false or true>
394394
`,
395395
Required: false,
396396
Destination: &NewChart,
@@ -1149,6 +1149,7 @@ func chartBump(c *cli.Context) {
11491149
logger.Log(ctx, slog.LevelInfo, "", slog.String("branch", Branch))
11501150
logger.Log(ctx, slog.LevelInfo, "", slog.String("overrideVersion", OverrideVersion))
11511151
logger.Log(ctx, slog.LevelInfo, "", slog.Bool("multi-RC", MultiRC))
1152+
logger.Log(ctx, slog.LevelInfo, "", slog.Bool("new-chart", NewChart))
11521153

11531154
if CurrentPackage == "" || Branch == "" || OverrideVersion == "" {
11541155
logger.Fatal(ctx, fmt.Sprintf("must provide values for CurrentPackage[%s], Branch[%s], and OverrideVersion[%s]",

0 commit comments

Comments
 (0)