Skip to content

Commit c58cdb9

Browse files
committed
fix build script
Signed-off-by: Andrey Parfenov <a1994ndrey@gmail.com>
1 parent 3bc5235 commit c58cdb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def run_command(cmd, cwd=None):
1212
p.stdout.flush()
1313
line = p.stdout.read(1)
1414
if line:
15-
print(line.decode('utf-8'), end='')
15+
print(line.decode('utf-8', 'ignore'), end='')
1616
else:
1717
if p.poll() != None:
1818
break

0 commit comments

Comments
 (0)