We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bc5235 commit c58cdb9Copy full SHA for c58cdb9
tools/build.py
@@ -12,7 +12,7 @@ def run_command(cmd, cwd=None):
12
p.stdout.flush()
13
line = p.stdout.read(1)
14
if line:
15
- print(line.decode('utf-8'), end='')
+ print(line.decode('utf-8', 'ignore'), end='')
16
else:
17
if p.poll() != None:
18
break
0 commit comments