Skip to content

Commit 84e4386

Browse files
committed
Break up large prints from --supported
1 parent 1549c5c commit 84e4386

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tools/make.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
from tools.utils import argparse_dir_not_parent
5454
from tools.utils import NoValidToolchainException
5555
from tools.utils import print_end_warnings
56+
from tools.utils import print_large_string
5657
from tools.settings import ROOT
5758
from tools.targets import Target
5859

@@ -292,14 +293,14 @@ def main():
292293

293294
if options.supported_toolchains:
294295
if options.supported_toolchains == "matrix":
295-
print(mcu_toolchain_matrix(
296+
print_large_string(mcu_toolchain_matrix(
296297
platform_filter=options.general_filter_regex,
297298
release_version=None
298299
))
299300
elif options.supported_toolchains == "toolchains":
300301
print('\n'.join(get_toolchain_list()))
301302
elif options.supported_toolchains == "targets":
302-
print(mcu_target_list())
303+
print_large_string(mcu_target_list())
303304
elif options.list_tests is True:
304305
print('\n'.join(map(str, sorted(TEST_MAP.values()))))
305306
else:

0 commit comments

Comments
 (0)