Browse Source

remove quotes from `tendermint version`

before:
0.14.0-'88f5f21d'

after:
0.14.0-88f5f21d

Fixes #1023
pull/1024/head
Anton Kaliaev 7 years ago
parent
commit
c611cc7268
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      scripts/dist_build.sh

+ 1
- 1
scripts/dist_build.sh View File

@ -31,7 +31,7 @@ echo "==> Building..."
-os="${XC_OS}" \
-arch="${XC_ARCH}" \
-osarch="!darwin/arm !solaris/amd64 !freebsd/amd64" \
-ldflags "-s -w -X ${GIT_IMPORT}.GitCommit='${GIT_COMMIT}'" \
-ldflags "-s -w -X ${GIT_IMPORT}.GitCommit=${GIT_COMMIT}" \
-output "build/pkg/{{.OS}}_{{.Arch}}/tendermint" \
-tags="${BUILD_TAGS}" \
github.com/tendermint/tendermint/cmd/tendermint


Loading…
Cancel
Save