Browse Source

Added version check fix for build process

pull/1943/head
Greg Szabo 7 years ago
parent
commit
728ac86ab1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      build/Makefile

+ 1
- 1
build/Makefile View File

@ -104,7 +104,7 @@ build-basecoin: git-branch
# set app_version
version-%: $(GOPATH)/bin/%
if [ -z "$(BUILD_NUMBER)" ]; then echo "BUILD_NUMBER not set" ; false ; fi
$(eval $*_version=$(shell $< version | cut -d- -f1 | sed 's/^v//' ))
$(eval $*_version=$(shell $< version | head -1 | cut -d- -f1 | sed 's/^\(ethermint:\s*\|\)\(v\|\)//' ))
# set build_folder
folder-%: version-%


Loading…
Cancel
Save