From 05655db35a7c3658678a982023ee86a625cf3189 Mon Sep 17 00:00:00 2001 From: Hunter LaFaille Date: Wed, 27 Nov 2024 15:37:17 +0000 Subject: [PATCH] Adding an empty space to continuation lines within manifests --- core/toolchain/package.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/toolchain/package.go b/core/toolchain/package.go index cdc70dd..d632110 100644 --- a/core/toolchain/package.go +++ b/core/toolchain/package.go @@ -33,7 +33,7 @@ func capLinesAt72Bytes(input string) []string { } if currentLineBytes > 0 { - lines = append(lines, currentLine) // Add the last line if not empty + lines = append(lines, " "+currentLine) // Add the last line if not empty } return lines @@ -60,6 +60,7 @@ func GenerateManifest(cfg project.ProjectConfig) (string, error) { base += line + "\n" } + println(base) return base, nil }