Skip to content

Commit

Permalink
Fix make install for arm64 (#1065)
Browse files Browse the repository at this point in the history
* fix dirty for arm64

* remove extra echo
  • Loading branch information
boojamya authored and agouin committed Dec 16, 2022
1 parent 3e3ef1b commit 917c237
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
@@ -1,6 +1,6 @@
VERSION := $(shell echo $(shell git describe --tags) | sed 's/^v//')
COMMIT := $(shell git log -1 --format='%H')
DIRTY := $(shell git status --porcelain | wc -l)
DIRTY := $(shell git status --porcelain | wc -l | xargs)
GAIA_VERSION := v7.0.1
AKASH_VERSION := v0.16.3
OSMOSIS_VERSION := v8.0.0
Expand All @@ -17,7 +17,7 @@ all: lint install

ldflags = -X github.com/cosmos/relayer/v2/cmd.Version=$(VERSION) \
-X github.com/cosmos/relayer/v2/cmd.Commit=$(COMMIT) \
-X github.com/cosmos/relayer/v2/cmd.Dirty=$(DIRTY) \
-X github.com/cosmos/relayer/v2/cmd.Dirty=$(DIRTY)

ldflags += $(LDFLAGS)
ldflags := $(strip $(ldflags))
Expand Down

0 comments on commit 917c237

Please sign in to comment.