Skip to content

Commit a0e794d

Browse files
committed
Fix nightly CI failing due to a change in metadata format
1 parent 917c181 commit a0e794d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/check.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ def main():
3131
features = [
3232
"{},rt,stm32-usbd".format(x)
3333
for x in crate_info["features"].keys()
34-
if x != "device-selected" and x != "rt" and x != "stm32f030"
34+
if x != "device-selected"
35+
and x != "rt"
36+
and x != "stm32f030"
37+
and x != "stm32-usbd"
3538
]
3639

3740
if 'size_check' in sys.argv:

0 commit comments

Comments
 (0)