Skip to content
Snippets Groups Projects
Commit dce814db authored by David Verelst's avatar David Verelst
Browse files

do not overwrite existing res_dir tag

parent bcf55575
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -445,7 +445,8 @@ def excel_stabcon(proot, fext='xlsx', pignore=None, pinclude=None, sheet=0, ...@@ -445,7 +445,8 @@ def excel_stabcon(proot, fext='xlsx', pignore=None, pinclude=None, sheet=0,
tags_dict['[Case id.]'] = tags_dict['[Case id.]'].lower() tags_dict['[Case id.]'] = tags_dict['[Case id.]'].lower()
dlc_case = tags_dict['[Case folder]'] dlc_case = tags_dict['[Case folder]']
tags_dict['[data_dir]'] = 'data/' tags_dict['[data_dir]'] = 'data/'
tags_dict['[res_dir]'] = 'res/%s/' % dlc_case if '[res_dir]' not in tags_dict:
tags_dict['[res_dir]'] = 'res/%s/' % dlc_case
tags_dict['[log_dir]'] = 'logfiles/%s/' % dlc_case tags_dict['[log_dir]'] = 'logfiles/%s/' % dlc_case
tags_dict['[htc_dir]'] = 'htc/%s/' % dlc_case tags_dict['[htc_dir]'] = 'htc/%s/' % dlc_case
if '[Case id.]' in tags_dict.keys(): if '[Case id.]' in tags_dict.keys():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment