Skip to content

Commit

Permalink
chore(541): remove branch name from version
Browse files Browse the repository at this point in the history
  • Loading branch information
zakir-code committed May 31, 2024
1 parent a75ba54 commit 1bac129
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/make -f

GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null || echo 'unknown')
GIT_TAGS := $(shell git describe --tags --always 2>/dev/null || echo 'unknown')
VERSION := $(GIT_BRANCH)-$(GIT_TAGS)
VERSION := $(shell git describe --tags --always 2>/dev/null || echo 'unknown')
COMMIT := $(shell git log -1 --format='%H' 2>/dev/null || echo 'unknown')

LEDGER_ENABLED ?= true
Expand Down
2 changes: 1 addition & 1 deletion cosmovisor_lite.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ FROM functionx/fx-core:7.2.0-rc2 as fxv7_2

FROM alpine:3.18

WORKDIR root
WORKDIR /root

ENV DAEMON_HOME=/root/.fxcore
ENV DAEMON_NAME=fxcored
Expand Down

0 comments on commit 1bac129

Please sign in to comment.