[Fix] Fix windows-style path in `md2yml.py` in Windows pre-commit. (#1407)

* test

* avoid windows path
pull/1414/head
MengzhangLI 2022-03-23 20:55:02 +08:00 committed by GitHub
parent 98984bf855
commit 0d51115d85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -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,