Skip to content

Commit

Permalink
fix: quick patch to avoid columnify error
Browse files Browse the repository at this point in the history
  • Loading branch information
KernelDeimos committed Sep 18, 2024
1 parent 0456893 commit 4396534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/phoenix/src/puter-shell/coreutils/ls.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ export default {
...(filesystem.capabilities['readdir.www'] ? ['www'] : []),
'size', time_properties[time],
],
maxLineWidth: ctx.env.COLS,
maxLineWidth: ctx.env.COLS ?? 80,
config: {
// json: {
// maxWidth: 20,
Expand Down

0 comments on commit 4396534

Please sign in to comment.