Skip to content

Commit b9166f6

Browse files
committed
Ignore empty lines of boomer layout
1 parent 2d139e2 commit b9166f6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

pkg/render/exec.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ func (o overlayConfig) resolveOverlays(overlayCache *mediacache.OverlayCache, lo
198198
out := []overlay{}
199199
for _, line := range strings.Split(o.layoutConfig, "\n") {
200200
line = strings.TrimSpace(line)
201-
if strings.HasPrefix(line, "#") {
201+
202+
if strings.HasPrefix(line, "#") || line == "" {
202203
continue
203204
}
204205

0 commit comments

Comments
 (0)