We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d9a4f1 commit 3b047a7Copy full SHA for 3b047a7
infra/base-images/list_images.py
@@ -29,8 +29,8 @@
29
30
import base_images
31
32
-for image_config in base_images.BASE_IMAGES:
+for image_config in base_images.BASE_IMAGE_DEFS:
33
# Exclude 'base-clang-full' as it is a special case not intended for
34
# the general build script.
35
- if image_config.name != 'base-clang-full':
36
- print(image_config.name)
+ if image_config.get('name', '') != 'base-clang-full':
+ print(image_config.get('name', ''))
0 commit comments