diff --git a/iree_tests/download_remote_files.py b/iree_tests/download_remote_files.py index c65be91e1..f62fc62b4 100644 --- a/iree_tests/download_remote_files.py +++ b/iree_tests/download_remote_files.py @@ -84,8 +84,8 @@ def download_azure_remote_file(test_dir: Path, remote_file: str): local_dir_path = test_dir local_file_path = test_dir / remote_file_name else: - local_dir_path = str(cache_location) + "/iree_tests/" + str(relative_dir) - local_file_path = str(cache_location) + "/iree_tests/" + str(relative_dir) + "/" + remote_file_name + local_dir_path = Path(cache_location) / "iree_tests" / relative_dir + local_file_path = Path(cache_location) / "iree_tests" / relative_dir / remote_file_name if check_azure_remote_file_matching_local(blob_properties, local_file_path): print(f" Skipping '{remote_file_name}' download (local MD5 hash matches)") return