Skip to content

Commit

Permalink
E2E tests - [DO NOT MERGE]
Browse files Browse the repository at this point in the history
  • Loading branch information
Slava Lysunkin committed Nov 18, 2024
1 parent 2f35fae commit 21fc459
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ set-hmc-version: yq
for template in $$TEMPLATE_DIR; do \
if [ $$(yq eval '.kind' $$template) = 'ClusterTemplate' ]; then \
echo $$template; \
sed -i '' "s/chartVersion:.*[^$$cutversion].*/&-$$cutversion/g" "$$template"; \
sed -i "s/chartVersion:.*[^$$cutversion].*/&-$$cutversion/g" "$$template"; \
fi; \
done; \
CHART_DIR=$(TEMPLATES_DIR)/cluster/**/Chart.yaml; \
for chart in $$CHART_DIR; do \
echo $$chart; \
sed -i '' "s/version:.*[^$$cutversion]*./&-$$cutversion/g" "$$chart"; \
sed -i "s/version:.*[^$$cutversion]*./&-$$cutversion/g" "$$chart"; \
done

.PHONY: hmc-chart-release
Expand Down

0 comments on commit 21fc459

Please sign in to comment.