File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
from typing import Dict , List
9
9
10
10
import requests
11
- from evergreen .release .agent_matrix import (
11
+ from scripts . evergreen .release .agent_matrix import (
12
12
get_supported_version_for_image ,
13
13
)
14
14
from git import Repo
@@ -42,7 +42,7 @@ def get_supported_variants_for_image(image: str) -> List[str]:
42
42
return get_release ()["supportedImages" ][image ]["variants" ]
43
43
44
44
45
- def get_supported_version (image : str ) -> List [str ]:
45
+ def get_supported_version_for_image_mck (image : str ) -> List [str ]:
46
46
image = get_image_name (image )
47
47
48
48
return get_supported_version_for_image (image )
@@ -84,7 +84,7 @@ def save_supported_dockerfiles():
84
84
"""
85
85
for image in SUPPORTED_IMAGES :
86
86
print ("Image:" , image )
87
- versions = get_supported_version (image )
87
+ versions = get_supported_version_for_image_mck (image )
88
88
for version in versions :
89
89
for variant in get_supported_variants_for_image (image ):
90
90
response = download_dockerfile_from_s3 (image , version , variant )
You can’t perform that action at this time.
0 commit comments