Hi, I use exec() to run build script (MsBuild on Windows). It runs fine, except one thing that it ignore colored text output by MsBuild. It leads to warning and error text is bypassed and is hard to recognize.
Example for reproducing:
echo('old color');
exec('color 8f');
echo('new color');
exit();
Could you please check it? Thank you.