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 0eab2eb commit a974a2dCopy full SHA for a974a2d
tools/ci_check_duplicate_usb_vid_pid.py
@@ -70,10 +70,12 @@ def configboard_files():
70
"""A pathlib glob search for all ports/*/boards/*/mpconfigboard.mk file
71
paths.
72
73
- :returns: A ``pathlib.Path.glob()`` genarator object
+ :returns: A ``pathlib.Path.glob()`` generator object
74
"""
75
working_dir = pathlib.Path().resolve()
76
- if not working_dir.name.startswith("circuitpython"):
+ if not working_dir.name.startswith("circuitpython") and not working_dir.name.startswith(
77
+ "micropython"
78
+ ):
79
raise RuntimeError(
80
"Please run USB VID/PID duplicate verification at the " "top-level directory."
81
)
0 commit comments