Skip to content

Commit

Permalink
Merge pull request #727 from haircommander/fix-v
Browse files Browse the repository at this point in the history
release: fix location of v
  • Loading branch information
haircommander authored Sep 16, 2022
2 parents c206c2c + a51c963 commit cb0734a
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 @@ -7,7 +7,7 @@ GOTOOLS_GOPATH ?= $(BUILD_DIR)/gotools
GOTOOLS_BINDIR ?= $(GOTOOLS_GOPATH)/bin
GINKGO_FLAGS ?= -vv --trace --race --randomize-all --flake-attempts 3 --progress --timeout 5m -r pkg/client
TEST_FLAGS ?=
PACKAGE_NAME ?= $(shell cargo metadata --no-deps --format-version 1 | jq -r '.packages[2] | [ .name, .version ] | join("-")')
PACKAGE_NAME ?= $(shell cargo metadata --no-deps --format-version 1 | jq -r '.packages[2] | [ .name, .version ] | join("-v")')
PREFIX ?= /usr
CI_TAG ?=

Expand Down Expand Up @@ -75,7 +75,7 @@ update-proto:

.PHONY: create-release-packages
create-release-packages: release
if [ "v$(PACKAGE_NAME)" != "conmonrs-$(CI_TAG)" ]; then \
if [ "$(PACKAGE_NAME)" != "conmonrs-$(CI_TAG)" ]; then \
echo "crate version and tag mismatch" ; \
exit 1 ; \
fi
Expand Down

0 comments on commit cb0734a

Please sign in to comment.