1
0
mirror of https://github.com/helm/chart-testing.git synced 2026-02-05 09:45:14 +01:00

Fix for --upgrade option (#624)

Signed-off-by: Aleksey @soar Smyrnov <i@soar.name>
This commit is contained in:
Aleksey @soar Smyrnov
2024-02-05 09:21:24 -05:00
committed by GitHub
parent afa25e9290
commit 560d59deb1

View File

@@ -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)
}