[Script] Bug fix in creating directories for verification task

This commit is contained in:
tangxifan 2020-11-29 11:02:23 -07:00
parent 4ec490645d
commit 329b6644f3
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ logging.info("Found " + str(len(testbench_files)) + " testbenches")
# Try to create the directory of Modelsim projects
#####################################################################
parent_dir_abspath = dirname(dirname(abspath(__file__)))
msim_task_dir_abspath = abspath(parent_dir_abspath + args.task_name) + "/postpnr/verilog_testbench";
msim_task_dir_abspath = abspath(parent_dir_abspath + "/" + args.task_name) + "/postpnr/verilog_testbench";
os.makedirs(msim_task_dir_abspath, exist_ok=True)
#####################################################################