Skip to content

Commit df9476f

Browse files
authored
fix: include default layer groups. (#410)
### Changes are visible to end-users: yes/no - Searched for relevant documentation and updated as needed: yes - Breaking change (forces users to change their own code or config): no - Suggested release notes appear below: no ### Test plan - Manual testing; please provide instructions so we can reproduce: tested with a client repository
1 parent 50dbd34 commit df9476f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

py/private/py_image_layer.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ def py_image_layer(name, py_binary, root = None, layer_groups = {}, compress = "
135135
)
136136

137137
groups = dict(**layer_groups)
138+
groups = dict(groups, **default_layer_groups)
138139
group_names = groups.keys() + ["default"]
139140

140141
_split_mtree_into_layer_groups(name, root, groups, group_names, **kwargs)

0 commit comments

Comments
 (0)