From 837da9360edea2d53169b2199202ba7a8a10a298 Mon Sep 17 00:00:00 2001 From: Anubhav Mishra Date: Sun, 26 Mar 2017 23:26:00 -0700 Subject: [PATCH] fix(helm): using regexp to match whitespaces instead --- pkg/releaseutil/manifest.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkg/releaseutil/manifest.go b/pkg/releaseutil/manifest.go index 5cb1fe3e9..f4545e5b5 100644 --- a/pkg/releaseutil/manifest.go +++ b/pkg/releaseutil/manifest.go @@ -18,6 +18,7 @@ package releaseutil import ( "fmt" + "regexp" "strings" ) @@ -37,12 +38,12 @@ func SplitManifests(bigfile string) map[string]string { // Basically, we're quickly splitting a stream of YAML documents into an // array of YAML docs. In the current implementation, the file name is just // a place holder, and doesn't have any further meaning. - sep := "\n---\n" + sep := regexp.MustCompile("(?:^|\\s*\n)---\\s*") tpl := "manifest-%d" res := map[string]string{} - // Making sure yaml formatting doesn't matter when generating manifest from string. + // Making sure YAML formatting doesn't matter when generating manifest from string. bigFileTmp := strings.TrimSpace(bigfile) - tmp := strings.Split(bigFileTmp, sep) + tmp := sep.Split(bigFileTmp, -1) for i, d := range tmp { res[fmt.Sprintf(tpl, i)] = d }