Skip to content

Commit

Permalink
Merge pull request #50 from snovikov/version-regex
Browse files Browse the repository at this point in the history
Fix version regex for terragrunt test
  • Loading branch information
cytopia authored Aug 27, 2023
2 parents f12713e + c142c87 commit 4fb7c7d
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 @@ -181,7 +181,7 @@ _test-tg-version:
fi; \
else \
echo "Testing for tag: $(TG_VERSION)"; \
if ! docker run --rm --platform $(ARCH) $(IMAGE):$(DOCKER_TAG) terragrunt --version | grep -E "^terragrunt[[:space:]]*version[[:space:]]*v?$(TG_VERSION)\.[.0-9]+$$"; then \
if ! docker run --rm --platform $(ARCH) $(IMAGE):$(DOCKER_TAG) terragrunt --version | grep -E "^terragrunt[[:space:]]*version[[:space:]]*v?$(TG_VERSION)\.[.0-9]+(-[-a-z0-9]+)?$$"; then \
echo "Failed"; \
exit 1; \
fi; \
Expand Down

0 comments on commit 4fb7c7d

Please sign in to comment.