Fix function call in Alveo tcl script
Created by: vloncar
Description
After changes in #626 the file list passed to the add_files
and import_files
tcl functions is using a variable, but the {...}
syntax doesn't do expansion so the name of the file is never properly made, causing the script to fail. This can be solved in several ways buy since the functions expect list of strings, the cleanest approach is to use [list ...]
.
Type of change
-
Bug fix (non-breaking change that fixes an issue)
Tests
Not really needed, this is a syntax fix.
Checklist
-
I have read the guidelines for contributing. -
I have commented my code, particularly in hard-to-understand areas. -
I have made corresponding changes to the documentation. -
My changes generate no new warnings. -
I have installed and run pre-commit
on the files I edited or added. -
I have added tests that prove my fix is effective or that my feature works.