Skip to content

Commit 01d6054

Browse files
committed
Revert "wip"
This reverts commit 98a4904.
1 parent 98a4904 commit 01d6054

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

internal/meta/meta.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,9 @@ func (m Meta) HasMultipleVariableSources() (bool, string) {
105105
}
106106
}
107107

108-
w.Flush() //nolint:errcheck
108+
if err := w.Flush(); err != nil {
109+
panic(err) // lintignore: R009
110+
}
109111

110112
return multiple, buf.String()
111113
}

0 commit comments

Comments
 (0)