From c7e6e583871d5357b54e43f56c442f95f00831d7 Mon Sep 17 00:00:00 2001 From: Asher Date: Thu, 5 Mar 2020 11:39:08 -0600 Subject: [PATCH] Output newlines in CI immediately Perhaps this is causing the output buffering issue with the arm builds. --- ci/build.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build.ts b/ci/build.ts index 1fa96ebe..3da36f91 100644 --- a/ci/build.ts +++ b/ci/build.ts @@ -34,7 +34,7 @@ class Builder { private async task(message: string, fn: () => Promise): Promise { const time = Date.now() - this.log(`${message}...`, true) + this.log(`${message}...`, !process.env.CI) try { const t = await fn() process.stdout.write(`took ${Date.now() - time}ms\n`)