Skip to content

Commit

Permalink
Merge pull request #46 from caseydavenport/fix-release-verify-v3.2
Browse files Browse the repository at this point in the history
Fix version check
  • Loading branch information
caseydavenport authored Sep 5, 2018
2 parents cbea219 + 37998eb commit fed5c7c
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 @@ -355,7 +355,7 @@ endif
## Verifies the release artifacts produces by `make release-build` are correct.
release-verify: release-prereqs
# Check the reported version is correct for each release artifact.
if ! docker run $(CONTAINER_NAME):$(VERSION)-$(ARCH) /dikastes --version | grep 'Version:\s*$(VERSION)$$'; then \
if ! docker run $(CONTAINER_NAME):$(VERSION)-$(ARCH) /dikastes --version | grep '^$(VERSION)$$'; then \
echo "Reported version:" `docker run $(CONTAINER_NAME):$(VERSION)-$(ARCH) /dikastes --version` "\nExpected version: $(VERSION)"; \
false; \
else \
Expand Down

0 comments on commit fed5c7c

Please sign in to comment.