diff options
author | Antonio Musolino <antoniomusolino007@gmail.com> | 2022-03-01 04:37:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 12:37:50 +0900 |
commit | 6a030a5396f9c838b4d4523f43ab2d9e2f502e04 (patch) | |
tree | 2ad4c356bb5c5ec5b91dbcd5dd9e3442fed0c2bc /runtime/js/99_main.js | |
parent | a41d399f5f728c73b652c3f5f5c2bf57d2054153 (diff) |
fix(runtime): disable console color for non tty stdout (#13782)
Diffstat (limited to 'runtime/js/99_main.js')
-rw-r--r-- | runtime/js/99_main.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index fb5de250c..a0f059603 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -574,13 +574,14 @@ delete Object.prototype.__proto__; args, location: locationHref, noColor, + isTty, pid, ppid, unstableFlag, cpuCount, } = runtimeOptions; - colors.setNoColor(noColor); + colors.setNoColor(noColor || !isTty); if (locationHref != null) { location.setLocationHref(locationHref); } @@ -666,12 +667,13 @@ delete Object.prototype.__proto__; unstableFlag, pid, noColor, + isTty, args, location: locationHref, cpuCount, } = runtimeOptions; - colors.setNoColor(noColor); + colors.setNoColor(noColor || !isTty); location.setLocationHref(locationHref); numCpus = cpuCount; registerErrors(); |