From 560d59deb111246905fc06379fb5a044bf81e14d Mon Sep 17 00:00:00 2001 From: "Aleksey @soar Smyrnov" Date: Mon, 5 Feb 2024 09:21:24 -0500 Subject: [PATCH] Fix for `--upgrade` option (#624) Signed-off-by: Aleksey @soar Smyrnov --- pkg/chart/chart.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/chart/chart.go b/pkg/chart/chart.go index 0f1e1f92..ebc67b4f 100644 --- a/pkg/chart/chart.go +++ b/pkg/chart/chart.go @@ -369,7 +369,7 @@ func (t *Testing) processCharts(action func(chart *Chart) TestResult) ([]TestRes return results, fmt.Errorf("failed identifying merge base: %w", err) } // Add worktree for the target revision - worktreePath, err := os.MkdirTemp("./", "ct_previous_revision") + worktreePath, err := os.MkdirTemp("./", "ct-previous-revision") if err != nil { return results, fmt.Errorf("could not create previous revision directory: %w", err) }