Skip to content

Commit

Permalink
Fix for --upgrade option (#624)
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksey @soar Smyrnov <[email protected]>
  • Loading branch information
soar authored Feb 5, 2024
1 parent afa25e9 commit 560d59d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/chart/chart.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 560d59d

Please sign in to comment.