Open HolQue opened 2 days ago
JPP_1109 JPP_1110
Alternatively both ways (with and without quotes) executed together:
"[import]" : ${import_files}['fileAA'],
"[import]" : "${import_files}['fileBB']"
Result:
'File '%import_files%['fileBB']__ConvertParameterToString__' is not existing!'!
This is related to the 'fileBB
' error. The 'fileAA
' error is not shown.
Expected: Already the first error ('fileAA
') should stop the computation.
JSON:
Result:
Error: 'File '%import_files%['fileAA']' is not existing!'!
Alternative:
"[import]" : "${import_files}['fileAA']"
Result:
Error: 'File '%import_files%['fileAA']__ConvertParameterToString__' is not existing!'!
The same with import paths from lists.
Expected: Paths resolved and files imported.