Skip to content

Commit

Permalink
Merge pull request #337 from mbaldessari/iib-ux
Browse files Browse the repository at this point in the history
Error out from load-iib when INDEX_IMAGES is undefined
  • Loading branch information
mbaldessari authored Aug 1, 2023
2 parents 15363f6 + 49728fa commit bc74b85
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ load-iib: ## CI target to install Index Image Bundles
for IIB in $(shell echo $(INDEX_IMAGES) | tr ',' '\n'); do \
INDEX_IMAGE="$${IIB}" ansible-playbook common/ansible/playbooks/iib-ci/iib-ci.yaml; \
done; \
else \
echo "No INDEX_IMAGES defined. Bailing out"; \
exit 1; \
fi


Expand Down

0 comments on commit bc74b85

Please sign in to comment.