Skip to content

Commit 3b047a7

Browse files
infra: fix list_images.py for build images (#14152)
Signed-off-by: David Korczynski <[email protected]>
1 parent 4d9a4f1 commit 3b047a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

infra/base-images/list_images.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929

3030
import base_images
3131

32-
for image_config in base_images.BASE_IMAGES:
32+
for image_config in base_images.BASE_IMAGE_DEFS:
3333
# Exclude 'base-clang-full' as it is a special case not intended for
3434
# the general build script.
35-
if image_config.name != 'base-clang-full':
36-
print(image_config.name)
35+
if image_config.get('name', '') != 'base-clang-full':
36+
print(image_config.get('name', ''))

0 commit comments

Comments
 (0)