From 2da060a403a6189457656360e5a323ae5069f213 Mon Sep 17 00:00:00 2001 From: BennyKok Date: Mon, 15 Jan 2024 13:19:59 +0800 Subject: [PATCH] fix: ensure the col is wide enough for the console log --- builder/modal-builder/src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/modal-builder/src/main.py b/builder/modal-builder/src/main.py index f1dfc78..2493a37 100644 --- a/builder/modal-builder/src/main.py +++ b/builder/modal-builder/src/main.py @@ -332,7 +332,7 @@ async def build_logic(item: Item): stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE, cwd=folder_path, - # env={**os.environ, "PYTHONUNBUFFERED": "1"} + env={**os.environ, "COLUMNS": "10000"} ) url = None