Skip to content

Commit 640c78e

Browse files
committed
fix merge
1 parent 64fbd8e commit 640c78e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/release/build/image_build_configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class ImageBuildConfiguration:
1111
scenario: BuildScenario
1212
version: str
13-
registry: List[str]
13+
registries: List[str]
1414
dockerfile_path: str
1515

1616
parallel: bool = False
@@ -24,8 +24,8 @@ def is_release_scenario(self) -> bool:
2424
return self.scenario == BuildScenario.RELEASE
2525

2626
def image_name(self) -> str:
27-
return self.registry[0].rpartition("/")[2]
27+
return self.registries[0].rpartition("/")[2]
2828

2929
def get_registries(self) -> List[str]:
3030
"""Return list of registries."""
31-
return self.registry
31+
return self.registries

0 commit comments

Comments
 (0)