Skip to content
Snippets Groups Projects
Commit 03475da6 authored by Yohan Jarosz's avatar Yohan Jarosz
Browse files

check output

parent f42850e7
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,9 @@ if __name__ == '__main__':
# find common path
mg_data = [Path(p).abspath() for p in args['-m']]
mt_data = [Path(p).abspath() for p in args['-t']]
# check paths
for pth in mg_data + mt_data:
print(pth)
common_path = Path(os.path.commonprefix(mg_data + mt_data)).dirname()
# update data paths
mg_data = [p.partition(common_path)[-1][1:] for p in mg_data]
......
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