Skip to content

Commit

Permalink
Merge pull request #19 from Kerosene-Labs/fix-manifest-no-space
Browse files Browse the repository at this point in the history
Adding an empty space to continuation lines within manifests
  • Loading branch information
hlafaille authored Nov 27, 2024
2 parents da4a240 + 05655db commit db7c3dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/toolchain/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -60,6 +60,7 @@ func GenerateManifest(cfg project.ProjectConfig) (string, error) {
base += line + "\n"
}

println(base)
return base, nil
}

Expand Down

0 comments on commit db7c3dc

Please sign in to comment.