Skip to content

Commit

Permalink
Address error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Racer159 committed Dec 6, 2023
1 parent 8ce52c1 commit 036faf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/packager/helm/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ func (h *Helm) DownloadPublishedChart(cosignKeyPath string) error {
// Download the file into a temp directory since we don't control what name helm creates here
temp := filepath.Join(h.chartPath, "temp")
if err = utils.CreateDirectory(temp, 0700); err != nil {
return fmt.Errorf("unable to download the helm chart: %w", err)
return fmt.Errorf("unable to create helm chart temp directory: %w", err)
}
defer os.RemoveAll(temp)

Expand Down

0 comments on commit 036faf5

Please sign in to comment.