Skip to content

Commit

Permalink
fixed missing first letter of the filename
Browse files Browse the repository at this point in the history
fixed missing first letter of the filename
  • Loading branch information
petar-cvit authored Apr 1, 2024
2 parents 8fab096 + 21f991b commit 7cf2720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cyclops-ctrl/internal/template/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ func (r Repo) mapHelmChart(chartName string, files map[string][]byte) (*models.T
}

chartFiles = append(chartFiles, &helmchart.File{
Name: path.Join(name[1:]),
Name: name,
Data: content,
})

Expand Down

0 comments on commit 7cf2720

Please sign in to comment.