[Fix] Fix windows-style path in `md2yml.py` in Windows pre-commit. (#1407)
* test * avoid windows pathpull/1414/head
parent
98984bf855
commit
0d51115d85
|
@ -264,9 +264,12 @@ def update_model_index():
|
|||
yml_files = glob.glob(osp.join(configs_dir, '**', '*.yml'), recursive=True)
|
||||
yml_files.sort()
|
||||
|
||||
# add .replace('\\', '/') to avoid Windows Style path
|
||||
model_index = {
|
||||
'Import':
|
||||
[osp.relpath(yml_file, MMSEG_ROOT) for yml_file in yml_files]
|
||||
'Import': [
|
||||
osp.relpath(yml_file, MMSEG_ROOT).replace('\\', '/')
|
||||
for yml_file in yml_files
|
||||
]
|
||||
}
|
||||
model_index_file = osp.join(MMSEG_ROOT, 'model-index.yml')
|
||||
is_different = dump_yaml_and_check_difference(model_index,
|
||||
|
|
Loading…
Reference in New Issue