Skip to content

Commit c7e6e58

Browse files
committed
Output newlines in CI immediately
Perhaps this is causing the output buffering issue with the arm builds.
1 parent 8c51502 commit c7e6e58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Builder {
3434

3535
private async task<T>(message: string, fn: () => Promise<T>): Promise<T> {
3636
const time = Date.now()
37-
this.log(`${message}...`, true)
37+
this.log(`${message}...`, !process.env.CI)
3838
try {
3939
const t = await fn()
4040
process.stdout.write(`took ${Date.now() - time}ms\n`)

0 commit comments

Comments
 (0)