tendermint/abci/scripts/publish.sh
Alexander Simmerl 4bee228ba7
Add abci repo
2018-06-22 02:36:54 +02:00

8 lines
276 B
Bash

#! /bin/bash
# Get the version from the environment, or try to figure it out.
if [ -z $VERSION ]; then
VERSION=$(awk -F\" '/Version =/ { print $2; exit }' < version/version.go)
fi
aws s3 cp --recursive build/dist s3://tendermint/binaries/abci/v${VERSION} --acl public-read