From 66206d5ce62ede278b44423939a7e6712bf7e029 Mon Sep 17 00:00:00 2001 From: ladyada Date: Sun, 29 Oct 2023 13:34:04 -0400 Subject: [PATCH] be less stringent --- build_platform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_platform.py b/build_platform.py index a3eaac5..c3d7e28 100755 --- a/build_platform.py +++ b/build_platform.py @@ -265,7 +265,7 @@ def generate_uf2(example_path): r = proc.wait(timeout=60) out = proc.stdout.read() err = proc.stderr.read() - if r == 0 and not err: + if r == 0: # and not err: # we might get warnings that do not affect the result ColorPrint.print_pass(CHECK) ColorPrint.print_info(out.decode("utf-8")) else: