Quick fix to prevent division by 0

This commit is contained in:
Master-Guy 2022-03-17 16:56:32 +01:00
parent 28bd5e1b30
commit 93f4c499d4

@ -167,7 +167,7 @@ export function ls(
function postSegments(segments: string[], style?: any, linked?: boolean): void {
const maxLength = Math.max(...segments.map((s) => s.length)) + 1;
const filesPerRow = Math.floor(80 / maxLength);
const filesPerRow = Math.ceil(80 / maxLength);
for (let i = 0; i < segments.length; i++) {
let row = "";
for (let col = 0; col < filesPerRow; col++) {