Skip to content

Commit

Permalink
build: fix for bake group contains - (#809)
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed May 7, 2024
1 parent 752d9b5 commit 2548637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ BAKE_OPTION ?= --print
bake-json/%:
docker buildx bake -f $(BAKE_JSON) --set=*.labels.org.opencontainers.image.revision=$(IMAGE_REVISION) $(BAKE_OPTION) $*
bake-json-all: $(foreach I, $(shell jq '.target | keys_unsorted | .[]' -r $(BAKE_JSON)), bake-json/$(I))
bake-json-group: $(foreach I, $(shell jq '.group[].$(BAKE_GROUP)[].targets[]' -r $(BAKE_JSON)), bake-json/$(I))
bake-json-group: $(foreach I, $(shell jq '.group[]."$(BAKE_GROUP)"[].targets[]' -r $(BAKE_JSON)), bake-json/$(I))


# Inspect R container images by `make inspect-image-all` and generate reports about them by `make report-all`.
Expand Down

0 comments on commit 2548637

Please sign in to comment.