json-rpc-shell: respect the NO_COLOR env. variable

This commit is contained in:
Přemysl Eric Janouch 2021-07-07 19:15:34 +02:00
parent af5929a383
commit 4a5c818ba1
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

View File

@ -1425,7 +1425,7 @@ init_colors (struct app_context *ctx)
g_terminal.stderr_is_tty = true;
break;
case COLOR_AUTO:
if (!g_terminal.initialized)
if (!g_terminal.initialized || getenv ("NO_COLOR"))
{
case COLOR_NEVER:
g_terminal.stdout_is_tty = false;