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.
2 parents e3c6f9d + b733314 commit 53c7928Copy full SHA for 53c7928
scripts/mbedtls_framework/config_checks_generator.py
@@ -218,9 +218,9 @@ def main(branch_data: BranchData) -> None:
218
help='output file location (default: %(default)s)')
219
options = parser.parse_args()
220
list_only = options.list or options.list_for_cmake
221
- output_files = generate_header_files(branch_data,
222
- options.output_directory,
223
- list_only=list_only)
+ output_files = list(generate_header_files(branch_data,
+ options.output_directory,
+ list_only=list_only))
224
if options.list_for_cmake:
225
sys.stdout.write(';'.join(output_files))
226
elif options.list:
0 commit comments