Console: Fix missing newlines in readme output

This commit is contained in:
zzz
2020-12-26 09:36:36 -05:00
parent 9e18ff1cd1
commit eeaf6f3514

View File

@ -76,6 +76,7 @@ public class ResourceHelper extends HelperBase {
int i = 0;
while ( (line = in.readLine()) != null) {
buf.append(line);
buf.append('\n');
if (_maxLines > 0 && ++i >= _maxLines)
break;
}