Skip to content

Commit

Permalink
be less stringent
Browse files Browse the repository at this point in the history
  • Loading branch information
ladyada committed Oct 29, 2023
1 parent 600ada1 commit 66206d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 66206d5

Please sign in to comment.