From 21f991b7889f428e650b796087f2d5e7ddbb3b63 Mon Sep 17 00:00:00 2001 From: Vedran Kolka Date: Sun, 31 Mar 2024 20:30:38 +0200 Subject: [PATCH] fixed missing first letter of the filename --- cyclops-ctrl/internal/template/helm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cyclops-ctrl/internal/template/helm.go b/cyclops-ctrl/internal/template/helm.go index 1ef5a49c..9ec7ba19 100644 --- a/cyclops-ctrl/internal/template/helm.go +++ b/cyclops-ctrl/internal/template/helm.go @@ -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, })