mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 14:22:16 +00:00
* fix build scripts Search for the right variable when introspecting Go code. `Version` was renamed to `TMCoreSemVer`. This is regression introduced in b95ac688af14d130e6ad0b580ed9a8181f6c487c * fix all `Version` introspections. Use `TMCoreSemVer` instead of `Version`
21 lines
476 B
Bash
Executable File
21 lines
476 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
VERSION=$1
|
|
DIST_DIR=./build/dist
|
|
|
|
# Get the version from the environment, or try to figure it out.
|
|
if [ -z $VERSION ]; then
|
|
VERSION=$(awk -F\" 'TMCoreSemVer =/ { print $2; exit }' < version/version.go)
|
|
fi
|
|
if [ -z "$VERSION" ]; then
|
|
echo "Please specify a version."
|
|
exit 1
|
|
fi
|
|
echo "==> Copying ${DIST_DIR} to S3..."
|
|
|
|
# copy to s3
|
|
aws s3 cp --recursive ${DIST_DIR} s3://tendermint/binaries/tendermint/v${VERSION} --acl public-read
|
|
|
|
exit 0
|