File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 53
53
from tools .utils import argparse_dir_not_parent
54
54
from tools .utils import NoValidToolchainException
55
55
from tools .utils import print_end_warnings
56
+ from tools .utils import print_large_string
56
57
from tools .settings import ROOT
57
58
from tools .targets import Target
58
59
@@ -292,14 +293,14 @@ def main():
292
293
293
294
if options .supported_toolchains :
294
295
if options .supported_toolchains == "matrix" :
295
- print (mcu_toolchain_matrix (
296
+ print_large_string (mcu_toolchain_matrix (
296
297
platform_filter = options .general_filter_regex ,
297
298
release_version = None
298
299
))
299
300
elif options .supported_toolchains == "toolchains" :
300
301
print ('\n ' .join (get_toolchain_list ()))
301
302
elif options .supported_toolchains == "targets" :
302
- print (mcu_target_list ())
303
+ print_large_string (mcu_target_list ())
303
304
elif options .list_tests is True :
304
305
print ('\n ' .join (map (str , sorted (TEST_MAP .values ()))))
305
306
else :
You can’t perform that action at this time.
0 commit comments